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