Finished first version of WrapCGI dist
[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;