X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Flive_component_controller_action_chained.t;h=157f016feb1a8fe33304bbad71f8afc334fdf11d;hb=a76d27860b3c96dd41203691df75b83abf1757e8;hp=8b0c1f9a2a2de549a73f3feb303d7171dbf43810;hpb=60dadd31309ce4a374c4dfc095c1655f706d28a5;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/live_component_controller_action_chained.t b/t/aggregate/live_component_controller_action_chained.t index 8b0c1f9..157f016 100644 --- a/t/aggregate/live_component_controller_action_chained.t +++ b/t/aggregate/live_component_controller_action_chained.t @@ -1020,10 +1020,8 @@ sub run_tests { } # Test round tripping, specifically the / character %2F in uri_for: - # not being able to feed it back action + captureargs and args into uri for and result in the original - # request uri is a major piece of suck ;) - # FIXME - what about people who have code to hack around this and manually uri encode args and captures - # themselves, erk! + # not being able to feed it back action + captureargs and args into uri for + # and result in the original request uri is a major piece of suck ;) foreach my $thing ( ['foo', 'bar'], ['foo%2Fbar', 'baz'], @@ -1032,8 +1030,11 @@ sub run_tests { ['foo%2Fbar', 'baz%2Fquux', { foo => 'bar', 'baz' => 'quux%2Ffrood'}], ['foo%2Fbar', 'baz%2Fquux', { foo => 'bar', 'baz%2Ffnoo' => 'quux%2Ffrood'}], ) { - my $uri = 'http://localhost/chained/roundtrip_urifor/' . $thing->[0] . '/' . $thing->[1]; - $uri .= '?' . join('&', map { $_ .'='. $thing->[2]->{$_}} sort keys %{$thing->[2]}) if $thing->[2]; + my $uri = 'http://localhost/chained/roundtrip_urifor/' . + $thing->[0] . '/' . $thing->[1]; + $uri .= '?' . join('&', + map { $_ .'='. $thing->[2]->{$_}} + sort keys %{$thing->[2]}) if $thing->[2]; ok( my $content = get($uri), 'request ' . $uri . ' ok'); @@ -1042,3 +1043,4 @@ sub run_tests { } done_testing; +