From: John Napiorkowski Date: Thu, 6 Feb 2014 16:37:10 +0000 (-0600) Subject: comment out test case X-Git-Tag: 5.90060~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=2bf65524901dcd5ea3edd8e56ac29401764ba89b comment out test case --- 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();