rename test test
[catagits/Catalyst-Runtime.git] / t / live_catalyst_test.t
1 use FindBin;
2 use lib "$FindBin::Bin/lib";
3 use Catalyst::Test 'TestApp';
4
5 use Test::More tests => 5;
6
7 content_like('/',qr/root/,'content check');
8 action_ok('/','Action ok ok','normal action ok');
9 action_redirect('/engine/response/redirect/one','redirect check');
10 action_notfound('/engine/response/status/s404','notfound check');
11 contenttype_is('/action/local/one','text/plain','Contenttype check');