X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_bugs%2F016_inheriting_from_roles.t;h=cbfde1bdf61bc2a052cebff67fd8c89810c659ea;hb=ee5e6a034b6aeaed7819138193288eb249d9380b;hp=269efcb093ddfce2bed94ef509ec1c129999c582;hpb=6217087ac410ed5f4b7f19d689f113f3a6765be2;p=gitmo%2FMouse.git diff --git a/t/100_bugs/016_inheriting_from_roles.t b/t/100_bugs/016_inheriting_from_roles.t index 269efcb..cbfde1b 100644 --- a/t/100_bugs/016_inheriting_from_roles.t +++ b/t/100_bugs/016_inheriting_from_roles.t @@ -1,13 +1,15 @@ #!/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 => 1; +use Test::More; use Test::Exception; - { package My::Role; use Mouse::Role; @@ -21,3 +23,5 @@ use Test::Exception; } qr/You cannot inherit from a Mouse Role \(My\:\:Role\)/, '... this croaks correctly'; } + +done_testing;