FailIfACCEPT_CONTEXTCalled role
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer / Model / SingletonLifeCycle.pm
CommitLineData
04189a0f 1package TestAppCustomContainer::Model::SingletonLifeCycle;
3ef84846 2use Moose;
3extends 'Catalyst::Model';
b463fcad 4with 'TestAppCustomContainer::Role::HoldsFoo',
66dc5ce5 5 'TestAppCustomContainer::Role::FailIfACCEPT_CONTEXTCalled';
3ef84846 6
7__PACKAGE__->meta->make_immutable;
8
9no Moose;
101;