X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flive_component_controller_action_path.t;h=96a52cb59d1d8506dcf0d84f0e7229ff2d86b7b4;hb=9ce444302fb0d264c4182d57d564e376e61a4725;hp=24aeffe403996a5c15e618f9295f700a899fcef1;hpb=50cc3183118f1056427ab314b84b91fd0d9e1383;p=catagits%2FCatalyst-Runtime.git diff --git a/t/live_component_controller_action_path.t b/t/live_component_controller_action_path.t index 24aeffe..96a52cb 100644 --- a/t/live_component_controller_action_path.t +++ b/t/live_component_controller_action_path.t @@ -4,7 +4,7 @@ use strict; use warnings; use FindBin; -use lib "$FindBin::Bin/../../../lib"; +use lib "$FindBin::Bin/lib"; our $iters; @@ -27,14 +27,14 @@ sub run_tests { { ok( my $response = - request('http://localhost/action/path/a path with spaces'), + request('http://localhost/action/path/a%20path%20with%20spaces'), 'Request' ); ok( $response->is_success, 'Response Successful 2xx' ); is( $response->content_type, 'text/plain', 'Response Content-Type' ); is( $response->header('X-Catalyst-Action'), - 'action/path/a path with spaces', + 'action/path/a%20path%20with%20spaces', 'Test Action' ); is( @@ -55,7 +55,7 @@ sub run_tests { ok( $response->is_success, 'Response Successful 2xx' ); is( $response->content_type, 'text/plain', 'Response Content-Type' ); is( $response->header('X-Catalyst-Action'), - 'action/path/åäö', 'Test Action' ); + 'action/path/%C3%A5%C3%A4%C3%B6', 'Test Action' ); is( $response->header('X-Test-Class'), 'TestApp::Controller::Action::Path',