minor changes
[catagits/Catalyst-Runtime.git] / t / lib / TestAppIndexDefault / Controller / DefaultAndPath.pm
diff --git a/t/lib/TestAppIndexDefault/Controller/DefaultAndPath.pm b/t/lib/TestAppIndexDefault/Controller/DefaultAndPath.pm
deleted file mode 100644 (file)
index 385361c..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-package TestAppIndexDefault::Controller::DefaultAndPath;
-
-use base 'Catalyst::Controller';
-
-sub default : Private {
-    my ($self, $c) = @_;
-    $c->res->body('default');
-}
-
-sub path_one_arg : Path('/') Args(1) {
-    my ($self, $c) = @_;
-    $c->res->body('path_one_arg');
-}
-
-1;