we can reuse the same test app for container with and without sugar
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer / Model / Foo.pm
1 package TestAppCustomContainer::Model::Foo;
2 use Moose;
3 extends 'Catalyst::Model';
4
5 __PACKAGE__->meta->make_immutable;
6
7 no Moose;
8 1;