Don't do bytes::length, just use length, tests to demonstrate the issue
[catagits/Catalyst-Runtime.git] / t / lib / TestAppEncoding.pm
1 package TestAppEncoding;
2 use strict;
3 use warnings;
4 use base qw/Catalyst/;
5 use Catalyst;
6
7 __PACKAGE__->config(name => __PACKAGE__);
8 __PACKAGE__->setup;
9
10 1;
11