110bab95092163db0c9cdfcdfa3b30936a636239
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestPlugin.pm
1 package TestPlugin;
2
3 use Catalyst;
4
5 __PACKAGE__->config->{'Plugin::CGIBin'} = {
6     controller => 'CGIHandler'
7 };
8
9 __PACKAGE__->setup(qw/CGIBin/);
10
11 1;