Move aggregatable tests using TestApp to t/aggregate.
[catagits/Catalyst-Runtime.git] / t / live_engine_setup_basics.t
diff --git a/t/live_engine_setup_basics.t b/t/live_engine_setup_basics.t
deleted file mode 100644 (file)
index 7d3d2d3..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!perl
-
-use strict;
-use warnings;
-
-use FindBin;
-use lib "$FindBin::Bin/lib";
-
-use Test::More tests => 1;
-use Catalyst::Test 'TestApp';
-
-SKIP:
-{
-    if ( $ENV{CATALYST_SERVER} ) {
-        skip "Using remote server", 1;
-    }
-    # Allow overriding automatic root.
-    is( TestApp->config->{root}, '/some/dir' );
-}