added cgi_chain_root
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestCGIBinChainRoot.pm
diff --git a/t/lib/TestCGIBinChainRoot.pm b/t/lib/TestCGIBinChainRoot.pm
new file mode 100644 (file)
index 0000000..fe50103
--- /dev/null
@@ -0,0 +1,15 @@
+package TestCGIBinChainRoot;
+
+use Catalyst::Runtime '5.70';
+use parent 'Catalyst';
+
+__PACKAGE__->config({
+    Controller::CGIHandler => {
+        cgi_chain_root => '/cgihandler/chain_root',
+        cgi_dir => 'cgi',
+    }
+});
+
+__PACKAGE__->setup(qw/Static::Simple/);
+
+1;