From: Florian Ragwitz Date: Sun, 24 Aug 2008 19:32:21 +0000 (+0000) Subject: Test :Chained('../../action'). X-Git-Tag: 5.7099_04~20 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=2989c763b19546aad894be3d37d8454ed9e8c737 Test :Chained('../../action'). --- diff --git a/t/live_component_controller_action_chained.t b/t/live_component_controller_action_chained.t index 352b427..88782d6 100644 --- a/t/live_component_controller_action_chained.t +++ b/t/live_component_controller_action_chained.t @@ -10,7 +10,7 @@ our $iters; BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 1; } -use Test::More tests => 138*$iters; +use Test::More tests => 141*$iters; use Catalyst::Test 'TestApp'; if ( $ENV{CAT_BENCHMARK} ) { @@ -548,6 +548,27 @@ sub run_tests { } # + # Test if ../ works to go up more than one level + # + { + local $TODO = 'to be coded'; + my @expected = qw[ + TestApp::Controller::Action::Chained->begin + TestApp::Controller::Action::Chained->one + TestApp::Controller::Action::Chained::ParentChain::Relative->chained_rel_two + TestApp::Controller::Action::Chained->end + ]; + + my $expected = join( ", ", @expected ); + + ok( my $response = request('http://localhost/chained/one/1/chained_rel_two/42/23'), + "../ works to go up more than one level" ); + is( $response->header('X-Catalyst-Executed'), + $expected, 'Executed actions' ); + is( $response->content, '1; 42, 23', 'Content OK' ); + } + + # # Test if :ChainedParent is working # {