X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F020_attributes%2F015_attribute_traits.t;h=baf3eb8f9e28cdc91617424e33654a91a98f8152;hb=31aa6299ca20515174f1b145e5b3d4dbd9e09a08;hp=1121d52df55d90071b074cf7b08c65d553e45b59;hpb=4060c871da12ba3c5e88986ed121a8254f906bd6;p=gitmo%2FMouse.git diff --git a/t/020_attributes/015_attribute_traits.t b/t/020_attributes/015_attribute_traits.t index 1121d52..baf3eb8 100644 --- a/t/020_attributes/015_attribute_traits.t +++ b/t/020_attributes/015_attribute_traits.t @@ -1,14 +1,16 @@ #!/usr/bin/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 => 12; +use Test::More; use Test::Exception; use Test::Mouse; - { package My::Attribute::Trait; use Mouse::Role; @@ -64,5 +66,4 @@ ok(!$gorch_attr->does('My::Attribute::Trait'), '... gorch doesnt do the trait'); ok(!$gorch_attr->has_applied_traits, '... no traits applied'); is($gorch_attr->applied_traits, undef, '... no traits applied'); - - +done_testing;