Fix generate_rs to set model to contents of stash->{class} if present and add tests.
[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;