Store the script options in the engine.
[catagits/Catalyst-Runtime.git] / t / lib / ScriptTestApp / TraitFor / Script.pm
CommitLineData
7f2e015b 1package ScriptTestApp::TraitFor::Script;
2use Moose::Role;
3use namespace::autoclean;
4
5around run => sub {
6 my ($orig, $self, @args) = @_;
7 return 'moo' . $self->$orig(@args);
8};
9
101;