Add a test case for the bug which autarch fixed in r6033
Tomas Doran [Tue, 30 Sep 2008 13:27:22 +0000 (13:27 +0000)]
t/040_type_constraints/029_define_constraint_twice_throws.t [new file with mode: 0644]

diff --git a/t/040_type_constraints/029_define_constraint_twice_throws.t b/t/040_type_constraints/029_define_constraint_twice_throws.t
new file mode 100644 (file)
index 0000000..df553fc
--- /dev/null
@@ -0,0 +1,26 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use Test::More tests => 2;
+use Test::Exception;
+
+BEGIN {
+    use_ok('Moose::Util::TypeConstraints');
+}
+
+{
+    package Some::Class;
+    use Moose::Util::TypeConstraints;
+
+    subtype 'MySubType' => as 'Int' => where { 1 };
+}
+
+throws_ok {
+    package Some::Other::Class;
+    use Moose::Util::TypeConstraints;
+
+    subtype 'MySubType' => as 'Int' => where { 1 };
+} qr/cannot be created again/, 'Trying to create same constraint twice throws';
+