added cgi_chain_root
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestCGIBinChainRoot.pm
1 package TestCGIBinChainRoot;
2
3 use Catalyst::Runtime '5.70';
4 use parent 'Catalyst';
5
6 __PACKAGE__->config({
7     Controller::CGIHandler => {
8         cgi_chain_root => '/cgihandler/chain_root',
9         cgi_dir => 'cgi',
10     }
11 });
12
13 __PACKAGE__->setup(qw/Static::Simple/);
14
15 1;