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=6f1fc3119232ae18633b55e6fd01c86e8bc5de48;hp=00a829d247531e9d102a5f7fcad39514ccb35f04;hb=2a8074980f232951ffa0f4ea52a2f195f7a0813f;hpb=759d380e3b229b5d9c152bfa02db477d9a9182b1 diff --git a/t/aggregate/unit_load_catalyst_test.t b/t/aggregate/unit_load_catalyst_test.t index 00a829d..6f1fc31 100644 --- a/t/aggregate/unit_load_catalyst_test.t +++ b/t/aggregate/unit_load_catalyst_test.t @@ -1,16 +1,12 @@ -#!perl - 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; use HTTP::Request::Common; -use Test::Exception; +use Test::Fatal; my $Class = 'Catalyst::Test'; my $App = 'TestApp'; @@ -26,7 +22,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 @@ -90,7 +86,7 @@ use_ok( $Class ); ok( $c->stash, " Stash accessible" ); ok( $c->action, " Action object accessible" ); ok( $res->request, " Response has request object" ); - lives_and { is( $res->request->uri, $Url) } + is exception { is( $res->request->uri, $Url) }, undef, " Request object has correct url"; } } } @@ -148,10 +144,15 @@ sub customize { Catalyst::Test::_customize_request($_[0], {}, @_[1 .. $#_]) } use_ok('Catalyst::Test', 'TestApp', 'foobar'); # Back compat test, ensure that request ignores anything which isn't a hash. -lives_ok { +is exception { request(GET('/dummy'), 'foo'); -} 'scalar additional param to request method ignored'; -lives_ok { +}, undef, 'scalar additional param to request method ignored'; +is exception { request(GET('/dummy'), []); -} 'array additional param to request method ignored'; +}, undef, '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;