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