Port tests to plack branch. Sorry, they still fail... Need to chat about if plack...
[catagits/Catalyst-Runtime.git] / t / lib / TestAppWithMeta.pm
CommitLineData
c98492ae 1package TestAppWithMeta;
2use strict;
3use warnings;
4use Catalyst;
5
6no warnings 'redefine';
7sub meta {}
8use warnings 'redefine';
9
10__PACKAGE__->setup;
11
121;
13