Add tests to show that 5.80 broke ->req->parameters when you do on-demand parsing.
[catagits/Catalyst-Runtime.git] / t / lib / DeprecatedTestApp.pm
CommitLineData
19a24dbb 1package DeprecatedTestApp;
2
3use strict;
4use Catalyst qw/
5 Test::Deprecated
6/;
7
8our $VERSION = '0.01';
9
10__PACKAGE__->config( name => 'DeprecatedTestApp', root => '/some/dir' );
11
12__PACKAGE__->setup;
13
141;