new test suit
[catagits/Catalyst-Runtime.git] / t / 05regexaction.t
diff --git a/t/05regexaction.t b/t/05regexaction.t
deleted file mode 100644 (file)
index 212c193..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package TestApp;
-
-use Catalyst qw[-Engine=Test];
-
-sub testregex : Regex(foo/(.*)) {
-        my ( $self, $c ) = @_;
-        $c->res->output( $c->req->snippets->[0] );
-}
-
-__PACKAGE__->setup();
-
-package main;
-
-use Test::More tests => 1;
-use Catalyst::Test 'TestApp';
-
-ok( get('/foo/bar') =~ /bar/ );