X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Funit_load_catalyst_test.t;h=68dfbdffc416789d52e260b4efe7afdbc1edc158;hp=00a829d247531e9d102a5f7fcad39514ccb35f04;hb=7ebac5f89810aab16ec76fc28dea45e936172a67;hpb=759d380e3b229b5d9c152bfa02db477d9a9182b1 diff --git a/t/aggregate/unit_load_catalyst_test.t b/t/aggregate/unit_load_catalyst_test.t index 00a829d..68dfbdf 100644 --- a/t/aggregate/unit_load_catalyst_test.t +++ b/t/aggregate/unit_load_catalyst_test.t @@ -3,9 +3,7 @@ use strict; use warnings; -use FindBin; -use lib "$FindBin::Bin/../lib"; -use Test::More tests => 61; +use Test::More; use FindBin qw/$Bin/; use lib "$Bin/../lib"; use Catalyst::Utils; @@ -26,7 +24,7 @@ my %Meth = ( ### make sure we're not trying to connect to a remote host -- these are local tests local $ENV{CATALYST_SERVER}; -use_ok( $Class ); +use Catalyst::Test (); ### check available methods { ### turn of redefine warnings, we'll get new subs exported @@ -155,3 +153,8 @@ lives_ok { request(GET('/dummy'), []); } 'array additional param to request method ignored'; +my $res = request(GET('/')); +is $res->code, 200, 'Response code 200'; +is $res->headers->{status}, 200, 'Back compat "status" header present'; + +done_testing;