fix for get_config_path also
[catagits/Catalyst-Plugin-ConfigLoader.git] / t / 30-catalyst_test_suffix.t
diff --git a/t/30-catalyst_test_suffix.t b/t/30-catalyst_test_suffix.t
deleted file mode 100644 (file)
index 02c9bd4..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-use strict;
-use warnings;
-
-use FindBin;
-use lib "$FindBin::Bin/lib";
-
-use Test::More tests => 2;
-
-BEGIN {
-    $ENV{TESTAPP_CONFIG_LOCAL_SUFFIX} = 'test';
-}
-use Catalyst::Test 'TestApp';
-
-ok my ($res, $c) = ctx_request('/'), 'context object';
-
-is $c->get_config_local_suffix, 'test', 'RT #47937';