private_path method for actions that returns a string suitable for use in forward...
[catagits/Catalyst-Runtime.git] / t / lib / TestPluginWithConstructor.pm
1 # See t/plugin_new_method_backcompat.t
2 package TestPluginWithConstructor;
3 use strict;
4 use warnings;
5 sub new {
6     my $class = shift;
7     return bless $_[0], $class;
8 }
9
10 1;
11