fixed test failure in generic.t with Moose > 2.02
[catagits/Catalyst-Controller-DBIC-API.git] / t / lib / TestAppCheckHasCol.pm
CommitLineData
7f3836d9 1package TestAppCheckHasCol;
2use Moose;
3use namespace::autoclean;
4use Catalyst::Runtime 5.70;
5
6extends 'Catalyst';
7
8our $VERSION = '0.01';
9
10__PACKAGE__->config( name => __PACKAGE__ );
11
12__PACKAGE__->setup;
13
141;