fixed bugs in type constraints and cored some extensibility features
[catagits/Catalyst-Runtime.git] / t / Test / Apple.pm
diff --git a/t/Test/Apple.pm b/t/Test/Apple.pm
new file mode 100644 (file)
index 0000000..c6f354e
--- /dev/null
@@ -0,0 +1,14 @@
+package t::Test::Apple;
+
+use strict;
+use warnings;
+
+use parent qw/Catalyst::Controller/;
+
+sub default :Path {
+}
+
+sub apple :Local {
+}
+
+1;