Merge branch 'master' of https://github.com/cryptomail/catalyst-runtime into cryptoma...
[catagits/Catalyst-Runtime.git] / t / head_middleware.t
index 1171c7b..baf560a 100644 (file)
@@ -9,8 +9,9 @@ use Plack::Test;
 # body BUT not so quickly that we fail to calculate the length.  This test
 # exists mainly to prevent regressions.
 
-{  
+{
   package MyApp::Controller::Root;
+  $INC{'MyApp/Controller/Root.pm'} = __FILE__;
 
   use base 'Catalyst::Controller';
 
@@ -22,12 +23,10 @@ use Plack::Test;
   package MyApp;
   use Catalyst;
 
-  MyApp->setup;
+  Test::More::ok(MyApp->setup, 'setup app');
 }
 
-$INC{'MyApp/Controller/Root.pm'} = __FILE__;
 
-Test::More::ok(MyApp->setup);
 
 ok my $psgi = MyApp->psgi_app, 'build psgi app';