More aggregation.
Florian Ragwitz [Sun, 27 Sep 2009 15:06:51 +0000 (15:06 +0000)]
t/aggregate/c3_appclass_bug.t [moved from t/c3_appclass_bug.t with 100% similarity]
t/aggregate/c3_mro.t [moved from t/c3_mro.t with 98% similarity]
t/aggregate/caf_backcompat.t [moved from t/caf_backcompat.t with 100% similarity]
t/aggregate/custom_live_component_controller_action_auto_doublebug.t [moved from t/custom_live_component_controller_action_auto_doublebug.t with 97% similarity]
t/aggregate/custom_live_path_bug.t [moved from t/custom_live_path_bug.t with 98% similarity]
t/aggregate/meta_method_unneeded.t [moved from t/meta_method_unneeded.t with 100% similarity]
t/aggregate/unit_load_catalyst_test.t [moved from t/unit_load_catalyst_test.t with 100% similarity]
t/aggregate/unit_metaclass_compat_extend_non_moose_controller.t [moved from t/unit_metaclass_compat_extend_non_moose_controller.t with 100% similarity]
t/aggregate/unit_metaclass_compat_non_moose.t [moved from t/unit_metaclass_compat_non_moose.t with 100% similarity]
t/aggregate/unit_metaclass_compat_non_moose_controller.t [moved from t/unit_metaclass_compat_non_moose_controller.t with 100% similarity]

similarity index 98%
rename from t/c3_mro.t
rename to t/aggregate/c3_mro.t
index d987544..99057c8 100644 (file)
@@ -15,7 +15,7 @@ my @cat_mods;
 
   local @INC = grep {/blib/} @INC;
   @cat_mods = (
-    'Catalyst', 
+    'Catalyst',
     Module::Pluggable::Object->new(search_path => ['Catalyst'])->plugins,
   );
 }
@@ -22,23 +22,23 @@ else {
         run_tests();
     }
 }
-    
+
 sub run_tests {
     SKIP:
     {
         if ( $ENV{CATALYST_SERVER} ) {
             skip 'Using remote server', 3;
         }
-        
+
         {
             my @expected = qw[
                 TestAppDoubleAutoBug::Controller::Root->auto
                 TestAppDoubleAutoBug::Controller::Root->default
                 TestAppDoubleAutoBug::Controller::Root->end
             ];
-    
+
             my $expected = join( ", ", @expected );
-    
+
             ok( my $response = request('http://localhost/action/auto/one'), 'auto + local' );
             is( $response->header('X-Catalyst-Executed'),
                 $expected, 'Executed actions' );
similarity index 98%
rename from t/custom_live_path_bug.t
rename to t/aggregate/custom_live_path_bug.t
index 9bbbd55..9398c61 100644 (file)
@@ -22,14 +22,14 @@ else {
         run_tests();
     }
 }
-    
+
 sub run_tests {
     SKIP:
     {
         if ( $ENV{CATALYST_SERVER} ) {
             skip 'Using remote server', 2;
         }
-        
+
         {
             my $expected = 'This is the foo method.';
             ok( my $response = request('http://localhost/'), 'response ok' );