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