avoid warning in TC-with-dash test
Ricardo Signes [Mon, 25 Oct 2010 17:59:49 +0000 (13:59 -0400)]
t/040_type_constraints/033_type_names.t

index bf39ea7..dafade2 100644 (file)
@@ -12,9 +12,21 @@ TODO:
 {
     local $TODO = 'type names are not validated in the TC metaclass';
 
-    like exception { Moose::Meta::TypeConstraint->new( name => 'Foo-Bar' ) },
-    qr/contains invalid characters/,
-        'Type names cannot contain a dash';
+    # Test written in this way to avoid a warning from like(undef, qr...);
+    # -- rjbs, 2010-10-25
+    my $error = exception {
+        Moose::Meta::TypeConstraint->new( name => 'Foo-Bar' )
+    };
+
+    if (defined $error) {
+        like(
+            $error,
+            qr/contains invalid characters/,
+            'Type names cannot contain a dash',
+        );
+    } else {
+        fail("Type names cannot contain a dash");
+    }
 }
 
 ok ! exception { Moose::Meta::TypeConstraint->new( name => 'Foo.Bar::Baz' ) },