The last commit didn't correctly catch 1 v.s. 1.5, use Perl's fmod function to check...
[gitmo/Mouse.git] / t / lib / Role / Child.pm
1 package Role::Child;
2 use Mouse::Role;
3
4 with 'Role::Parent' => { alias => { meth1 => 'aliased_meth1', } };
5
6 sub meth1 { }
7
8 1;