failing test for a certain case of specifying the site root
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestCGIBinRoot2.pm
CommitLineData
053b8d71 1package TestCGIBinRoot2;
2
3use Catalyst::Runtime '5.70';
4use 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
161;