t push origin masterMerge branch 'billmoseley-check_return_of_write_to_psgi_input'
[catagits/Catalyst-Runtime.git] / t / lib / TestAppWithMeta.pm
1 package TestAppWithMeta;
2 use strict;
3 use warnings;
4 use Catalyst;
5
6 no warnings 'redefine';
7 sub meta {}
8 use warnings 'redefine';
9
10 __PACKAGE__->setup;
11
12 1;
13