include our own leak checking code rather than using CatalystX::LeakCheck
[catagits/Catalyst-Runtime.git] / t / unicode_plugin_config.t
1 use strict;
2 use warnings;
3 use Test::More;
4
5 BEGIN { $ENV{TESTAPP_ENCODING} = 'UTF-8' };
6
7 # setup library path
8 use FindBin qw($Bin);
9 use lib "$Bin/lib";
10
11 use Catalyst::Test 'TestAppUnicode';
12
13 {
14     TestAppUnicode->encoding('UTF-8');
15     action_ok('/unicode', 'encoding configured ok');
16 }
17
18 done_testing;
19