explaining the existance of a class, for mentors to review
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer.pm
index eb57069..a70d3f0 100644 (file)
@@ -4,6 +4,10 @@ use Catalyst;
 extends 'Catalyst';
 use namespace::autoclean;
 
+__PACKAGE__->config(
+    container_class => $ENV{TEST_APP_CURRENT_CONTAINER}
+) if $ENV{TEST_APP_CURRENT_CONTAINER};
+
 __PACKAGE__->setup;
 
 1;