failing test for a certain case of specifying the site root
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestCGIBinRoot2.pm
diff --git a/t/lib/TestCGIBinRoot2.pm b/t/lib/TestCGIBinRoot2.pm
new file mode 100644 (file)
index 0000000..ad7702f
--- /dev/null
@@ -0,0 +1,16 @@
+package TestCGIBinRoot2;
+
+use Catalyst::Runtime '5.70';
+use parent 'Catalyst';
+
+__PACKAGE__->config({
+    root => 'another_root',
+    Controller::CGIHandler => {
+        cgi_root_path => 'cgi',
+        cgi_dir => 'cgi'
+    }
+});
+
+__PACKAGE__->setup(qw/Static::Simple/);
+
+1;