Move to aggregate
[catagits/Catalyst-Runtime.git] / t / aggregate / live_redirect_body.t
similarity index 98%
rename from t/live_redirect_body.t
rename to t/aggregate/live_redirect_body.t
index b1e5b4e..135cb85 100644 (file)
@@ -1,5 +1,5 @@
 use FindBin;
-use lib "$FindBin::Bin/lib";
+use lib "$FindBin::Bin/../lib";
 use Catalyst::Test 'TestApp', {default_host => 'default.com'};
 use Catalyst::Request;
 
@@ -38,7 +38,7 @@ use Test::More tests => 12;
 
       ok( my $response = request($request), 'Request' );
       is( $response->code, 302, 'Response Code' );
-      
+
       # When the developer sets both the content body and content type, the set content body and content_type should get through.
       is( $response->header( 'Content-Type' ), 'text/plain', 'Content Type' );
       like( $response->content, qr/kind sir/, 'Content contains content set by the Controller' );