diff --git a/guestbook-ng.pl b/guestbook-ng.pl index 0a3c811..c466a2b 100755 --- a/guestbook-ng.pl +++ b/guestbook-ng.pl @@ -14,11 +14,11 @@ plugin 'Config'; # Helpers helper pg => sub { state $pg = Mojo::Pg->new( - 'postgres://' . + 'postgres://' . app->config->{'pg_user'} . - ':' . + ':' . app->config->{'pg_pw'} . - '@localhost/' . + '@localhost/' . app->config->{'pg_db'} ); }; diff --git a/lib/GuestbookNg/Model/Test.pm b/lib/GuestbookNg/Model/Test.pm index 6c4c376..09764d9 100644 --- a/lib/GuestbookNg/Model/Test.pm +++ b/lib/GuestbookNg/Model/Test.pm @@ -9,9 +9,7 @@ use Mojo::Base -base, -signatures; has 'pg'; sub new($class, $pg, $object) { - bless { - $pg => $object - } + bless {$pg => $object} } sub test_model($self, $string) {