@@ -, +, @@ --- t/db_dependent/api/v1/auth.t | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) --- a/t/db_dependent/api/v1/auth.t +++ a/t/db_dependent/api/v1/auth.t @@ -17,7 +17,7 @@ use Modern::Perl; -use Test::More tests => 2; +use Test::More tests => 3; use Test::Mojo; use Test::Warn; @@ -126,6 +126,17 @@ subtest 'CORS support' => sub { ->header_is( 'Access-control-allow-origin', '*', 'Header set' ); }; +subtest 'spec retrieval tests' => sub { + + plan tests => 4; + + $t->get_ok("/api/v1/") + ->status_is(200); + + $t->get_ok("/api/v1/.html") + ->status_is(200); +}; + sub create_user_and_session { my $user = $builder->build( { --