adapt TestAppCustomContainer, not to break everything while it's not ready
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer.pm
1 package TestAppCustomContainer;
2 use Moose;
3 use Catalyst;
4 extends 'Catalyst';
5 use namespace::autoclean;
6
7 __PACKAGE__->config(
8     container_class => $ENV{TEST_APP_CURRENT_CONTAINER}
9 ) if $ENV{TEST_APP_CURRENT_CONTAINER};
10
11 __PACKAGE__->setup;
12
13 1;