X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=trunk%2Ft%2Faggregate%2Flive_engine_response_print.t;fp=trunk%2Ft%2Faggregate%2Flive_engine_response_print.t;h=0000000000000000000000000000000000000000;hb=f436bc1bece2bcc2a04138068e5c22e70d9d6d35;hp=ad00ea3711d55125b53cfa4c9d772d8fbac5056d;hpb=e28a6876ad3e11890226e5bab6df4b0725e0981e;p=catagits%2FCatalyst-Runtime.git diff --git a/trunk/t/aggregate/live_engine_response_print.t b/trunk/t/aggregate/live_engine_response_print.t deleted file mode 100644 index ad00ea3..0000000 --- a/trunk/t/aggregate/live_engine_response_print.t +++ /dev/null @@ -1,24 +0,0 @@ -#!perl - -use strict; -use warnings; - -use FindBin; -use lib "$FindBin::Bin/../lib"; - -use Test::More tests => 9; -use Catalyst::Test 'TestApp'; - -my $expected = { - one => "foo", - two => "foobar", - three => "foo,bar,baz", -}; - -for my $action ( sort keys %{$expected} ) { - ok( my $response = request('http://localhost/engine/response/print/' . $action ), - 'Request' ); - ok( $response->is_success, "Response $action successful 2xx" ); - - is( $response->content, $expected->{$action}, "Content $action OK" ); -}