Commit standalone test, test which makes the TestApp blow up and the nasty workaround
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Moose / NoAttributes.pm
diff --git a/t/lib/TestApp/Controller/Moose/NoAttributes.pm b/t/lib/TestApp/Controller/Moose/NoAttributes.pm
new file mode 100644 (file)
index 0000000..7770816
--- /dev/null
@@ -0,0 +1,16 @@
+package TestApp::Controller::Moose::NoAttributes;
+use Moose;
+extends qw/Catalyst::Controller/;
+
+__PACKAGE__->config(
+   actions => {
+       test => { Local => undef }
+   }
+);
+
+sub test {
+}
+
+no Moose;
+1;
+