X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F300_immutable%2F013_immutable_roundtrip.t;h=fe39a3442657844d1c4ed9170d95e9773fd5ce3c;hb=4e8a0f6483d92d6439cca3ca51850905f7bdc819;hp=f516cc1488e09ba85752fe1ee959c78e9c332313;hpb=c4022d38ec32aedd5fd61677f84b59e7f8d5d502;p=gitmo%2FMoose.git diff --git a/t/300_immutable/013_immutable_roundtrip.t b/t/300_immutable/013_immutable_roundtrip.t index f516cc1..fe39a34 100644 --- a/t/300_immutable/013_immutable_roundtrip.t +++ b/t/300_immutable/013_immutable_roundtrip.t @@ -25,6 +25,10 @@ plan tests => 1; __PACKAGE__->meta->make_immutable; __PACKAGE__->meta->make_mutable; + + # This actually is testing for a bug in Class::MOP that cause + # Moose::Meta::Method::Constructor to spit out a warning when it + # shouldn't have done so. The bug was fixed in CMOP 0.75. ::stderr_unlike( sub { Bar->meta->make_immutable }, qr/Not inlining a constructor/,