'alias' and 'excludes' in with() are deprecated
[gitmo/Mouse.git] / t / lib / Role / Child.pm
index 323eaa1..1ee02b1 100644 (file)
@@ -1,7 +1,7 @@
 package Role::Child;
 use Mouse::Role;
 
-with 'Role::Parent' => { alias => { meth1 => 'aliased_meth1', } };
+with 'Role::Parent' => { -alias => { meth1 => 'aliased_meth1', } };
 
 sub meth1 { }