added new test case: t/030_roles/031_roles_applied_in_create.t
[gitmo/Moose.git] / t / lib / Role / Child.pm
CommitLineData
87259f30 1package Role::Child;
2use Moose::Role;
3
4with 'Role::Parent' => { alias => { meth1 => '_aliased', } };
5
6sub meth1 { }
7
81;