X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_bugs%2F022_role_caller.t;h=fc2cd9453c538b8353623d9f820911c63fd0a55a;hb=HEAD;hp=6df661d14cd0a1127aa62f4f6a2deb6925511e28;hpb=4c98ebb0cca8d5d49d3a91eaf735f9861d00ccb0;p=gitmo%2FMouse.git diff --git a/t/100_bugs/022_role_caller.t b/t/100_bugs/022_role_caller.t index 6df661d..fc2cd94 100644 --- a/t/100_bugs/022_role_caller.t +++ b/t/100_bugs/022_role_caller.t @@ -1,4 +1,7 @@ package MyRole; +# This is automatically generated by author/import-moose-test.pl. +# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!! +use t::lib::MooseCompat; use Mouse::Role; @@ -11,7 +14,7 @@ package MyClass2; use Mouse; with 'MyRole'; no Mouse; package main; -use Test::More tests => 4; +use Test::More; { local $TODO = 'Role composition does not clone methods yet'; @@ -23,3 +26,5 @@ use Test::More tests => 4; isnt(MyClass1->foo, "MyClass2::foo", "role method is not confused with other class" ); isnt(MyClass2->foo, "MyClass1::foo", "role method is not confused with other class" ); + +done_testing;