tests and changelogging
[gitmo/Moose.git] / t / 300_immutable / 011_constructor_is_wrapped.t
index 9eb37a8..e203db3 100644 (file)
@@ -4,11 +4,10 @@ use strict;
 use warnings;
 
 use Test::More;
-BEGIN {
-    eval "use Test::Output;";
-    plan skip_all => "Test::Output is required for this test" if $@;
-    plan tests => 1;
-}
+
+use Test::Requires {
+    'Test::Output' => '0.01', # skip all if not installed
+};
 
 {
     package ModdedNew;
@@ -25,7 +24,9 @@ BEGIN {
 
     ::stderr_like(
         sub { Foo->meta->make_immutable },
-        qr/\QNot inlining 'new' for Foo since it is not inheriting the default Moose::Object::new\E\s+\QIf you are certain you don't need to inline your constructor, specify inline_constructor => 0 in your call to Foo->meta->make_immutable\E\s+\Q ('new' has method modifiers which would be lost if it were inlined)/,
+        qr/\QNot inlining 'new' for Foo since it has method modifiers which would be lost if it were inlined/,
         'got a warning that Foo may not have an inlined constructor'
     );
 }
+
+done_testing;