added failing test for specifying cgi_dir with MyApp->path_to
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestCGIBinRoot3 / Controller / CGIHandler.pm
CommitLineData
f050749c 1package TestCGIBinRoot3::Controller::CGIHandler;
2
3use parent 'Catalyst::Controller::CGIBin';
4
5__PACKAGE__->config(
6 cgi_root_path => 'cgi',
7 cgi_dir => TestCGIBinRoot3->path_to('root','cgi'),
8 );
9
10
111;