From: Ash Berlin Date: Thu, 18 Oct 2007 11:11:28 +0000 (+0000) Subject: Back out tests since miyagawa already added them else where. X-Git-Tag: 5.7099_04~122 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4668cab5842b8d1003530f5c7af1dee81153d51b;p=catagits%2FCatalyst-Runtime.git Back out tests since miyagawa already added them else where. --- diff --git a/t/live_engine_request_uri.t b/t/live_engine_request_uri.t index fe15e9d..cecab6c 100644 --- a/t/live_engine_request_uri.t +++ b/t/live_engine_request_uri.t @@ -6,7 +6,7 @@ use warnings; use FindBin; use lib "$FindBin::Bin/lib"; -use Test::More tests => 54; +use Test::More tests => 49; use Catalyst::Test 'TestApp'; use Catalyst::Request; @@ -120,12 +120,3 @@ SKIP: is( $response->header( 'X-Catalyst-warnings' ), 0, 'no warnings emitted' ); } - -# test that query params are unescaped properly with '+' -{ - ok( my $response = request('http://localhost/engine/request/uri?text=C%2B%2B+lang'), 'Request' ); - ok( $response->is_success, 'Response Successful 2xx' ); - ok( eval '$creq = ' . $response->content, 'Unserialize Catalyst::Request' ); - is( $creq->{uri}->query, 'text=C%2B%2B+lang', 'Query string ok' ); - is( $creq->{parameters}->{text}, 'C++ lang', 'Unescaped param has pluses in it' ); -}