diff options
Diffstat (limited to 't/lib/Role/Child.pm')
-rw-r--r-- | t/lib/Role/Child.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/lib/Role/Child.pm b/t/lib/Role/Child.pm new file mode 100644 index 0000000..4c70436 --- /dev/null +++ b/t/lib/Role/Child.pm @@ -0,0 +1,8 @@ +package Role::Child; +use Moose::Role; + +with 'Role::Parent' => { -alias => { meth1 => 'aliased_meth1', } }; + +sub meth1 { } + +1; |