whitespace cleanup
[catagits/Catalyst-Runtime.git] / t / inject_component_util.t
index 3ac9dcc..b015ff9 100644 (file)
@@ -1,5 +1,5 @@
 use strict;
-use warnings; 
+use warnings;
 use Test::More;
 use FindBin;
 use lib "$FindBin::Bin/lib";
@@ -36,11 +36,11 @@ BEGIN {
 {
   package TestCatalyst;
   $INC{'TestCatalyst.pm'} = __FILE__;
-   
+
   use Moose;
   use Catalyst;
   use Catalyst::Utils;
-   
+
   after 'setup_components' => sub {
       my $self = shift;
       Catalyst::Utils::inject_component( into => __PACKAGE__, component => 'Model::Banana' );
@@ -50,13 +50,13 @@ BEGIN {
       Catalyst::Utils::inject_component( into => __PACKAGE__, component => 'Test::Apple', as => 'Apple' );
       Catalyst::Utils::inject_component( into => __PACKAGE__, component => 'Test::Apple', as => 'Apple2', traits => ['RoleTest1', 'RoleTest2'] );
   };
-   
-  TestCatalyst->config( 'home' => '.' ); 
+
+  TestCatalyst->config( 'home' => '.' );
   TestCatalyst->setup;
 }
+
 use Catalyst::Test qw/TestCatalyst/;
+
 ok( TestCatalyst->controller( $_ ) ) for qw/ Apple Test::Apple /;
 ok( TestCatalyst->model( $_ ) ) for qw/ Banana Cherry /;
 is( TestCatalyst->controller('Apple2')->aaa, 'aaa');