fixed bug where setup wasn't called without plugins
[catagits/CatalystX-Declare.git] / t / lib / PlainTestApp / Controller / Root.pm
diff --git a/t/lib/PlainTestApp/Controller/Root.pm b/t/lib/PlainTestApp/Controller/Root.pm
new file mode 100644 (file)
index 0000000..ead663c
--- /dev/null
@@ -0,0 +1,6 @@
+use CatalystX::Declare;
+
+controller PlainTestApp::Controller::Root {
+
+    final action foo under '/' { $ctx->response->body('foo') }
+}