failing test for a certain case of specifying the site root
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestCGIBinRoot2.pm
1 package TestCGIBinRoot2;
2
3 use Catalyst::Runtime '5.70';
4 use parent 'Catalyst';
5
6 __PACKAGE__->config({
7     root => 'another_root',
8     Controller::CGIHandler => {
9         cgi_root_path => 'cgi',
10         cgi_dir => 'cgi'
11     }
12 });
13
14 __PACKAGE__->setup(qw/Static::Simple/);
15
16 1;