added Test::Pod support
[catagits/Catalyst-Runtime.git] / t / 12default.t
diff --git a/t/12default.t b/t/12default.t
deleted file mode 100644 (file)
index ed3ca04..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package TestApp;
-
-use Catalyst qw[-Engine=Test];
-
-__PACKAGE__->action(
-    '!default' => sub {
-        my ( $self, $c ) = @_;
-        $c->res->output('bar');
-    }
-);
-
-package TestApp::C::Foo::Bar;
-
-TestApp->action(
-    '!default' => sub {
-        my ( $self, $c ) = @_;
-        $c->res->output('yada');
-    }
-);
-
-package main;
-
-use Test::More tests => 2;
-use Catalyst::Test 'TestApp';
-
-ok( get('/foo')         =~ /bar/ );
-ok( get('/foo/bar/foo') =~ /yada/ );