X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Funit_core_uri_for_action.t;fp=t%2Faggregate%2Funit_core_uri_for_action.t;h=dfe36666368ccc49dac3f56b738311a611abe65e;hp=b8f394467647c1aae0024c18d5d35b68ac62f2a8;hb=b3679813053b5cf5cc6e8f3086d7c1cbb3c73b5a;hpb=aaee1a0a5c8f57a15bc1474b52add5729f65c66f diff --git a/t/aggregate/unit_core_uri_for_action.t b/t/aggregate/unit_core_uri_for_action.t index b8f3944..dfe3666 100644 --- a/t/aggregate/unit_core_uri_for_action.t +++ b/t/aggregate/unit_core_uri_for_action.t @@ -8,7 +8,7 @@ use lib "$FindBin::Bin/../lib"; use Test::More; -plan tests => 29; +plan tests => 30; use_ok('TestApp'); @@ -160,6 +160,10 @@ is($context->uri_for($chained_action, [ 1 ], 2, { q => 1 }), 'http://127.0.0.1/foo/chained/foo2/1/2/end2/3/', 'uri_for_action returns uri with empty arg on undef last argument' ); + is( $context->uri_for_action($action_needs_two, [ 'foo' , 'bar/baz' ], (3,4)), + 'http://127.0.0.1/foo/chained/foo2/foo/bar%2Fbaz/end2/3/', + 'uri_for_action returns uri with empty arg on undef last argument' ); + my $complex_chained = '/action/chained/empty_chain_f'; is( $context->uri_for_action( $complex_chained, [23], (13), {q => 3} ), 'http://127.0.0.1/foo/chained/empty/23/13?q=3',