forgot to add a file
Rafael Kitover [Sun, 21 Jun 2009 01:06:01 +0000 (01:06 +0000)]
t/lib/TestAppIndexDefault/Controller/Default.pm [new file with mode: 0644]

diff --git a/t/lib/TestAppIndexDefault/Controller/Default.pm b/t/lib/TestAppIndexDefault/Controller/Default.pm
new file mode 100644 (file)
index 0000000..f47d023
--- /dev/null
@@ -0,0 +1,15 @@
+package TestAppIndexDefault::Controller::Default;
+
+use base 'Catalyst::Controller';
+
+sub default : Private {
+    my ($self, $c) = @_;
+    $c->res->body('default_default');
+}
+
+sub path_one_arg : Path('/default') Args(1) {
+    my ($self, $c) = @_;
+    $c->res->body('default_path_one_arg');
+}
+
+1;