X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flive_engine_request_parameters.t;fp=t%2Flive_engine_request_parameters.t;h=81c9ba98e8285bee96943c7a2684441308ddae8a;hb=e5542b70d94ba6ebb9e7deb347b260d32e965bc5;hp=d93437d10b2e11cc5aa86a556e1c5e45e3be8c5a;hpb=b3f87dd054ccd28f4645ff93acb0ee86471c9ed1;p=catagits%2FCatalyst-Runtime.git diff --git a/t/live_engine_request_parameters.t b/t/live_engine_request_parameters.t index d93437d..81c9ba9 100644 --- a/t/live_engine_request_parameters.t +++ b/t/live_engine_request_parameters.t @@ -6,7 +6,7 @@ use warnings; use FindBin; use lib "$FindBin::Bin/lib"; -use Test::More tests => 35; +use Test::More tests => 40; use Catalyst::Test 'TestApp'; use Catalyst::Request; @@ -48,6 +48,16 @@ use HTTP::Request::Common; { my $creq; + ok( my $response = request("http://localhost/dump/request?q=foo=bar"), + 'Request' ); + ok( $response->is_success, 'Response Successful 2xx' ); + is( $response->content_type, 'text/plain', 'Response Content-Type' ); + ok( eval '$creq = ' . $response->content ); + is $creq->{parameters}->{q}, 'foo=bar', '= not ignored'; +} + +{ + my $creq; my $parameters = { 'a' => [qw(A b C d E f G)],