X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestAppWithoutUnicode.pm;fp=t%2Flib%2FTestAppWithoutUnicode.pm;h=5cb3d8101b32b598231b1b9273f8998cf57e8f81;hb=4fb27043578a31f1ffd7498d1097c817a932d173;hp=0000000000000000000000000000000000000000;hpb=43ef80517090ffc0392cfbd980ff4777957fa139;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestAppWithoutUnicode.pm b/t/lib/TestAppWithoutUnicode.pm new file mode 100644 index 0000000..5cb3d81 --- /dev/null +++ b/t/lib/TestAppWithoutUnicode.pm @@ -0,0 +1,14 @@ +package TestAppWithoutUnicode; +use strict; +use warnings; +use TestLogger; +use base qw/Catalyst/; +use Catalyst qw/Params::Nested/; + +__PACKAGE__->config('name' => 'TestAppWithoutUnicode'); + +__PACKAGE__->log(TestLogger->new); + +__PACKAGE__->setup; + +1;