remove and tweak tests that depend on Params::Nested to resolve known regression
[catagits/Catalyst-Runtime.git] / t / lib / TestAppWithoutUnicode.pm
CommitLineData
4fb27043 1package TestAppWithoutUnicode;
2use strict;
3use warnings;
4use TestLogger;
5use base qw/Catalyst/;
58d59994 6use Catalyst qw//;
4fb27043 7
8__PACKAGE__->config('name' => 'TestAppWithoutUnicode');
9
10__PACKAGE__->log(TestLogger->new);
11
12__PACKAGE__->setup;
13
141;