add a test for the 'class' attribute of TC::Class
Yuval Kogman [Sat, 12 Apr 2008 15:01:21 +0000 (15:01 +0000)]
t/040_type_constraints/020_class_type_constraint.t

index 7fe4b7b..b9f98c4 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 12;
+use Test::More tests => 13;
 use Test::Exception;
 
 BEGIN {
@@ -30,6 +30,8 @@ lives_ok { class_type('Boop', message { "${_} is not a Boop" }) }
 
 my $type = find_type_constraint("Foo");
 
+is( $type->class, "Foo", "class attribute" );
+
 ok( $type->is_subtype_of("Gorch"), "subtype of gorch" );
 
 ok( $type->is_subtype_of("Bar"), "subtype of bar" );