Remove exectuable bit from model; clean up in test

This commit is contained in:
swag 2021-12-04 13:41:21 -05:00
parent d20295741c
commit 067b2918b4
2 changed files with 1 additions and 1 deletions

0
lib/GuestbookNg/Model/Test.pm Executable file → Normal file
View File

View File

@ -10,6 +10,6 @@ my $t = Test::Mojo->new($script);
# Just make sure we get a 200 OK for now
$t->get_ok('/')->status_is(200);
$t->get_ok('/test')->status_is(200);
$t->post_ok('/test' => form => {string => 'a'})->status_is(200);
$t->post_ok('/test', form => {string => 'a'})->status_is(200);
done_testing();