fixes for when there are more than one constraint in the arg or capture
[catagits/Catalyst-Runtime.git] / t / lib / TestAppEncodingSetInApp.pm
1 package TestAppEncodingSetInApp;
2 use Moose;
3
4 use Catalyst;
5
6 extends 'Catalyst';
7
8 __PACKAGE__->config(
9     encoding => 'UTF-8',
10 );
11
12 __PACKAGE__->setup;
13
14 1;