add travis config
[p5sagit/Class-C3-Componentised.git] / t / lib / MyModule / OwnComponent.pm
CommitLineData
c7e9a452 1package # hide from pause
2 MyModule::OwnComponent;
dae1b1a5 3use strict;
4use warnings;
c7e9a452 5
374af1a5 6use MRO::Compat;
7use mro 'c3';
c7e9a452 8
9sub message {
10 my $self = shift;
11
12 return join(" ", "OwnComponent", $self->next::method);
13}
14
151;