let each test component do one thing. leave depends_on(DefaultSetup) for a while
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer / Model / RequestLifeCycle.pm
CommitLineData
54f4b8d1 1package TestAppCustomContainer::Model::RequestLifeCycle;
3ef84846 2use Moose;
3extends 'Catalyst::Model';
072b618d 4with 'TestAppCustomContainer::Role::ACCEPT_CONTEXT';
3ef84846 5
6__PACKAGE__->meta->make_immutable;
7
8no Moose;
91;