stop using Moo as a test package
[catagits/Catalyst-Runtime.git] / t / lib / TestPluginWithConstructor.pm
CommitLineData
6a8f85af 1# See t/plugin_new_method_backcompat.t
278ff444 2package Class::Accessor::Fast;
6a8f85af 3use strict;
4use warnings;
278ff444 5
6a8f85af 6sub new {
7 my $class = shift;
8 return bless $_[0], $class;
9}
10
278ff444 11package TestPluginWithConstructor;
12use strict;
13use warnings;
14use base qw/Class::Accessor::Fast/;
15
6a8f85af 161;
17