applied elapsed time handling patch from Emanuele Zeppieri
[catagits/Catalyst-Runtime.git] / t / unit_load_catalyst_test.t
CommitLineData
fb02aed1 1#!perl\r
2\r
3use strict;\r
4use warnings;\r
5\r
6use Test::More;\r
7\r
8plan tests => 3;\r
9\r
10use_ok('Catalyst::Test');\r
11\r
12eval "get('http://localhost')";\r
13isnt( $@, "", "get returns an error message with no app specified");\r
14\r
15eval "request('http://localhost')";\r
16isnt( $@, "", "request returns an error message with no app specified");\r