rename test test
[catagits/Catalyst-Runtime.git] / t / live_catalyst_test.t
diff --git a/t/live_catalyst_test.t b/t/live_catalyst_test.t
new file mode 100644 (file)
index 0000000..6f1bacc
--- /dev/null
@@ -0,0 +1,11 @@
+use FindBin;
+use lib "$FindBin::Bin/lib";
+use Catalyst::Test 'TestApp';
+
+use Test::More tests => 5;
+
+content_like('/',qr/root/,'content check');
+action_ok('/','Action ok ok','normal action ok');
+action_redirect('/engine/response/redirect/one','redirect check');
+action_notfound('/engine/response/status/s404','notfound check');
+contenttype_is('/action/local/one','text/plain','Contenttype check');
\ No newline at end of file