summaryrefslogtreecommitdiffstats
path: root/t/lib/MyApp/Controller/Root.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/MyApp/Controller/Root.pm')
-rw-r--r--t/lib/MyApp/Controller/Root.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/lib/MyApp/Controller/Root.pm b/t/lib/MyApp/Controller/Root.pm
new file mode 100644
index 0000000..8d02d2b
--- /dev/null
+++ b/t/lib/MyApp/Controller/Root.pm
@@ -0,0 +1,15 @@
+package MyApp::Controller::Root;
+use Moose;
+use namespace::autoclean;
+
+BEGIN { extends 'Catalyst::Controller' }
+
+__PACKAGE__->config(namespace => '');
+
+sub index :Path :Args(0) {}
+
+sub end : ActionClass('RenderView') {}
+
+__PACKAGE__->meta->make_immutable;
+
+1;