Fix file uploads with utf8 form field names. RT#113486
[catagits/Catalyst-Runtime.git] / t / dead_no_unknown_error.t
1 use strict;
2 use warnings;
3 use FindBin qw/$Bin/;
4 use lib "$Bin/lib";
5 use Test::More tests => 1;
6
7 use Catalyst ();
8 eval {
9     require TestAppUnknownError;
10 };
11 unlike($@, qr/Unknown error/, 'No unknown error');
12
13 1;
14