Add test for looping DispatchType::Chained->list
[catagits/Catalyst-Runtime.git] / t / unit_load_catalyst_test.t
CommitLineData
c7ded7aa 1#!perl
2
3use strict;
4use warnings;
5
6use Test::More;
7
8plan tests => 3;
9
10use_ok('Catalyst::Test');
11
12eval "get('http://localhost')";
13isnt( $@, "", "get returns an error message with no app specified");
14
15eval "request('http://localhost')";
16isnt( $@, "", "request returns an error message with no app specified");