fixed static configured page attribute not being used (RT#56226)
[catagits/Catalyst-Controller-DBIC-API.git] / t / lib / TestAppCheckHasCol.pm
1 package TestAppCheckHasCol;
2 use Moose;
3 use namespace::autoclean;
4 use Catalyst::Runtime 5.70;
5
6 extends 'Catalyst';
7
8 our $VERSION = '0.01';
9
10 __PACKAGE__->config( name => __PACKAGE__ );
11
12 __PACKAGE__->setup;
13
14 1;