Merge branch 'master' into gsoc_breadboard
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer / Model / SingletonLifeCycle.pm
1 package TestAppCustomContainer::Model::SingletonLifeCycle;
2 use Moose;
3 extends 'Catalyst::Model';
4 with 'TestAppCustomContainer::Role::FailIfACCEPT_CONTEXTCalled';
5
6 __PACKAGE__->meta->make_immutable;
7
8 no Moose;
9 1;