Add tests to show that 5.80 broke ->req->parameters when you do on-demand parsing.
[catagits/Catalyst-Runtime.git] / t / lib / TestPluginWithConstructor.pm
CommitLineData
6a8f85af 1# See t/plugin_new_method_backcompat.t
2package TestPluginWithConstructor;
3use strict;
4use warnings;
5sub new {
6 my $class = shift;
7 return bless $_[0], $class;
8}
9
101;
11