nicer action sorting for Path
[catagits/Catalyst-Runtime.git] / t / aggregate / live_component_controller_action_named_index.t
diff --git a/t/aggregate/live_component_controller_action_named_index.t b/t/aggregate/live_component_controller_action_named_index.t
deleted file mode 100644 (file)
index 393e030..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!perl
-
-use strict;
-use warnings;
-
-use FindBin;
-use lib "$FindBin::Bin/../lib";
-
-our $iters;
-
-BEGIN { $iters = $ENV{CAT_BENCH_ITERS} || 1; }
-
-use Test::More tests => 1*$iters;
-
-use Catalyst::Test 'TestAppIndexActionName';
-
-if ( $ENV{CAT_BENCHMARK} ) {
-    require Benchmark;
-    Benchmark::timethis( $iters, \&run_tests );
-}
-else {
-    for ( 1 .. $iters ) {
-        run_tests();
-    }
-}
-
-sub run_tests {
-    is(get('/indexchained'), 'index_chained', ':Chained overrides index');
-}