Enable hooking parameters into req/res construction. Useful if you are dynamically...
[catagits/Catalyst-Runtime.git] / t / dead_no_unknown_error.t
1 #!/usr/bin/env perl
2
3 use strict;
4 use warnings;
5 use FindBin qw/$Bin/;
6 use lib "$Bin/lib";
7 use Test::More tests => 1;
8
9 use Catalyst ();
10 eval {
11     require TestAppUnknownError;
12 };
13 unlike($@, qr/Unknown error/, 'No unknown error');
14
15 1;
16