X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F050_metaclasses%2F002_custom_attr_meta_as_role.t;fp=t%2F050_metaclasses%2F002_custom_attr_meta_as_role.t;h=2f8f5192efe0e7a3135fcd78f12b426928d9ecaa;hb=6217087ac410ed5f4b7f19d689f113f3a6765be2;hp=106f19c0927904d864d2d986e1f59c7336cb4267;hpb=4068a8f62faf3cbc8a569873763076d08a17c3e4;p=gitmo%2FMouse.git diff --git a/t/050_metaclasses/002_custom_attr_meta_as_role.t b/t/050_metaclasses/002_custom_attr_meta_as_role.t index 106f19c..2f8f519 100644 --- a/t/050_metaclasses/002_custom_attr_meta_as_role.t +++ b/t/050_metaclasses/002_custom_attr_meta_as_role.t @@ -1,13 +1,14 @@ #!/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 => 2; +use Test::More; use Test::Exception; -; - lives_ok { package MouseX::Attribute::Test; use Mouse::Role; @@ -20,3 +21,5 @@ lives_ok { extends 'Mouse::Meta::Attribute'; with 'MouseX::Attribute::Test'; } 'custom attribute metaclass extending role is okay'; + +done_testing;