X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F030_roles%2F034_create_role.t;h=fa53f5f386f2797dc9e67f9cc516b5d429f077ad;hb=fde8e43f95fe996fbc2a778aa259feeb04552171;hp=03a8cb824ee627959710f33456d9c593edc44273;hpb=0bdc9d38dfd3de07aad929f6629f8fa65d434c27;p=gitmo%2FMouse.git diff --git a/t/030_roles/034_create_role.t b/t/030_roles/034_create_role.t index 03a8cb8..fa53f5f 100644 --- a/t/030_roles/034_create_role.t +++ b/t/030_roles/034_create_role.t @@ -1,8 +1,11 @@ #!/usr/bin/env perl +# 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 strict; use warnings; -use Test::More tests => 4; -use Mouse::Role (); +use Test::More; +use Mouse (); my $role = Mouse::Meta::Role->create( 'MyItem::Role::Equipment', @@ -30,3 +33,4 @@ ok(!$visored->is_worn, "method was consumed"); ok(!$role->is_anon_role, "the role is not anonymous"); +done_testing;