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