new test suit
[catagits/Catalyst-Runtime.git] / t / 13default.t
diff --git a/t/13default.t b/t/13default.t
deleted file mode 100644 (file)
index 4c5c55c..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package TestApp;
-
-use Catalyst qw[-Engine=Test];
-
-sub default : Private {
-    my ( $self, $c ) = @_;
-    $c->res->output('bar');
-}
-
-__PACKAGE__->setup;
-
-package TestApp::C::Foo::Bar;
-
-use base 'Catalyst::Base';
-
-sub default : Private {
-    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/ );