Store the script options in the engine.
[catagits/Catalyst-Runtime.git] / t / lib / ScriptTestApp / Controller / Root.pm
diff --git a/t/lib/ScriptTestApp/Controller/Root.pm b/t/lib/ScriptTestApp/Controller/Root.pm
new file mode 100644 (file)
index 0000000..f88ce33
--- /dev/null
@@ -0,0 +1,10 @@
+package ScriptTestApp::Controller::Root;
+use Moose;
+use namespace::autoclean;
+
+BEGIN { extends 'Catalyst::Controller' }
+
+sub default : Chained('/') PathPart('') Args() {}
+
+1;
+