X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Flive_component_controller_action_default.t;h=4222b8c42a599ae9b4d63f71667ec3ef4756448f;hb=1e3b6963a326204a5a58052e9a14a5770382ae5e;hp=935a326d63b0e460186f5e05888129ec4d0bf3af;hpb=42da66a91b0a87ebb81d8552bcd0b05d3557c83e;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/live_component_controller_action_default.t b/t/aggregate/live_component_controller_action_default.t index 935a326..4222b8c 100644 --- a/t/aggregate/live_component_controller_action_default.t +++ b/t/aggregate/live_component_controller_action_default.t @@ -29,7 +29,7 @@ sub run_tests { TestApp::Controller::Action::Default->begin TestApp::Controller::Action::Default->default TestApp::View::Dump::Request->process - TestApp->end + TestApp::Controller::Root->end ]; my $expected = join( ", ", @expected ); @@ -66,7 +66,7 @@ sub run_tests { ok( eval '$creq = ' . $response->content, 'Unserialize Catalyst::Request' - ); + ) or fail("EXCEPTION $@ DESERIALIZING " . $response->content); is_deeply( $creq->{arguments}, $expected, 'Arguments ok' ); } @@ -76,7 +76,7 @@ sub run_tests { my @expected = qw[ TestApp::Controller::Action->begin TestApp::Controller::Action->default - TestApp->end + TestApp::Controller::Root->end ]; my $expected = join( ", ", @expected );