more cleanup, fixes
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainer / Controller / Root.pm
index 891a63a..311d006 100644 (file)
@@ -2,6 +2,13 @@ package TestAppCustomContainer::Controller::Root;
 use Moose;
 BEGIN { extends 'Catalyst::Controller' }
 
+__PACKAGE__->config(namespace => '');
+
+sub index : Default {
+    my ($self, $c) = @_;
+    $c->res->body('foo');
+}
+
 __PACKAGE__->meta->make_immutable;
 no Moose;
 1;