silence warnings in tests
[catagits/Catalyst-Runtime.git] / t / head_middleware.t
index ff7afcf..8b8eb6d 100644 (file)
@@ -23,11 +23,10 @@ use Plack::Test;
   package MyApp;
   use Catalyst;
 
-  MyApp->setup;
+  Test::More::ok(MyApp->setup, 'setup app');
 }
 
 
-Test::More::ok(MyApp->setup);
 
 ok my $psgi = MyApp->psgi_app, 'build psgi app';
 
@@ -44,7 +43,7 @@ test_psgi $psgi, sub {
     my $res = $cb->(HEAD "/root/test");
     is $res->code, 200, 'OK';
     is $res->content, '', 'correct body';
-    is $res->content_length, 16, 'correct length';    
+    is $res->content_length, 16, 'correct length';
 };
 
 done_testing;