diff --git a/Web/t/01_endpoints/05_root/01_index.t b/Web/t/01_endpoints/05_root/01_index.t index a34d42c..b56690d 100644 --- a/Web/t/01_endpoints/05_root/01_index.t +++ b/Web/t/01_endpoints/05_root/01_index.t @@ -4,6 +4,7 @@ use MJB::Web::Test; my $t = Test::Mojo::MJB->new('MJB::Web'); # Home Page Exists -$t->get_ok( '/' ); +$t->get_ok( '/' ) + ->status_is( 200 ); done_testing(); diff --git a/Web/t/01_endpoints/05_root/02_about.t b/Web/t/01_endpoints/05_root/02_about.t index 5586b50..bdf8255 100644 --- a/Web/t/01_endpoints/05_root/02_about.t +++ b/Web/t/01_endpoints/05_root/02_about.t @@ -4,6 +4,7 @@ use MJB::Web::Test; my $t = Test::Mojo::MJB->new('MJB::Web'); # About Page Exists -$t->get_ok( '/about' ); +$t->get_ok( '/about' ) + ->status_is( 200 ); done_testing(); diff --git a/Web/t/01_endpoints/05_root/03_contact.t b/Web/t/01_endpoints/05_root/03_contact.t index d94a872..0072115 100644 --- a/Web/t/01_endpoints/05_root/03_contact.t +++ b/Web/t/01_endpoints/05_root/03_contact.t @@ -4,6 +4,7 @@ use MJB::Web::Test; my $t = Test::Mojo::MJB->new('MJB::Web'); # Contact Page Exists -$t->get_ok( '/contact' ); +$t->get_ok( '/contact' ) + ->status_is( 200 ); done_testing();