X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fenv.t;h=0045f0172f588a2891738685eed35cfe24e8e886;hb=73349c50e6a2ecda84a6bf290ab055db6c0818a8;hp=7a976584bea813f1cd28d64ad162e2fd59993821;hpb=298a02dfad348a5cb08ce0ca079b4e22debced42;p=catagits%2FWeb-Simple.git diff --git a/t/env.t b/t/env.t index 7a97658..0045f01 100644 --- a/t/env.t +++ b/t/env.t @@ -1,18 +1,15 @@ use strict; use warnings FATAL => 'all'; -use Test::More ( - eval { require HTTP::Request::AsCGI } - ? 'no_plan' - : (skip_all => 'No HTTP::Request::AsCGI') -); +use Test::More 'no_plan'; +use Plack::Test; { use Web::Simple 'EnvTest'; package EnvTest; - dispatch { + sub dispatch_request { sub (GET) { - my $env = @_[ENV]; + my $env = $_[PSGI_ENV]; [ 200, [ "Content-type" => "text/plain" ], [ 'foo' ] @@ -21,16 +18,6 @@ use Test::More ( } } -use HTTP::Request::Common qw(GET POST); - my $app = EnvTest->new; -sub run_request { - my $request = shift; - my $c = HTTP::Request::AsCGI->new($request)->setup; - $app->run; - $c->restore; - return $c->response; -} - -run_request(GET 'http://localhost/'); +ok $app->run_test_request(GET => 'http://localhost/')->is_success;