X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Fhttp_method.t;h=797c807717fd7645dd5fd207a9b9b3853086ef98;hp=506e5641598a4707426338d03a9bd216bc7a6970;hb=8ae5aabd9cdab481eeb9f885eff96ad5fb768b55;hpb=9c7b676881de2255b45fdab5bfb71f58a5e6d236 diff --git a/t/http_method.t b/t/http_method.t index 506e564..797c807 100644 --- a/t/http_method.t +++ b/t/http_method.t @@ -1,5 +1,10 @@ use warnings; use strict; +use Test::More; + +plan skip_all => "Test Cases are Sketch for next release"; + +__END__ # Test case to check that we now send scalar and filehandle like # bodys directly to the PSGI engine, rather than call $writer->write @@ -39,7 +44,7 @@ use strict; $c->res->location($c->uri_for( $self->action_for('show'))); } - $INC{'MyApp/Controller/User.pm'} = '1'; + $INC{'MyApp/Controller/User.pm'} = __FILE__; package MyApp; use Catalyst; @@ -79,16 +84,10 @@ use strict; -use Devel::Dwarn; -use Test::More; + use HTTP::Request::Common; use Catalyst::Test 'MyApp'; ok my($res, $c) = ctx_request('/'); - - - -Dwarn(MyApp->dispatcher); - done_testing();