added cgi_file_pattern option
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestCGIBin.pm
CommitLineData
21a20b7e 1package TestCGIBin;
2
12d29ebf 3use Catalyst::Runtime '5.70';
4use parent 'Catalyst';
21a20b7e 5
9e040aeb 6__PACKAGE__->config({
7 Controller::CGIHandler => {
8 cgi_file_pattern => ['*.sh', qr/\.pl\z/]
9 },
10});
11
2340af9d 12__PACKAGE__->setup(qw/Static::Simple/);
21a20b7e 13
141;