Beginning of dzilization
[gitmo/Moose.git] / t / 040_type_constraints / 024_role_type_constraint.t
index ee13ebe..eae75d4 100644 (file)
@@ -3,8 +3,8 @@
 use strict;
 use warnings;
 
-use Test::More tests => 18;
-use Test::Exception;
+use Test::More;
+use Test::Fatal;
 
 BEGIN {
     use_ok('Moose::Util::TypeConstraints');
@@ -22,11 +22,17 @@ BEGIN {
 
     with qw(Bar Gorch);
 
+    package FooC;
+    use Moose;
+    with qw(Foo);
+
+    package BarC;
+    use Moose;
+    with qw(Bar);
+
 }
 
-lives_ok { role_type 'Beep' } 'role_type keywork works';
-lives_ok { role_type('Boop', message { "${_} is not a Boop" }) }
-  'role_type keywork works with message';
+is( exception { role_type('Boop', message { "${_} is not a Boop" }) }, undef, 'role_type keywork works with message' );
 
 my $type = find_type_constraint("Foo");
 
@@ -38,14 +44,16 @@ ok( $type->is_subtype_of("Bar"), "subtype of bar" );
 
 ok( $type->is_subtype_of("Object"), "subtype of Object" );
 
-ok( find_type_constraint("Bar")->check(Foo->new), "Foo passes Bar" );
-ok( find_type_constraint("Bar")->check(Bar->new), "Bar passes Bar" );
-ok( !find_type_constraint("Gorch")->check(Bar->new), "but Bar doesn't pass Gorch");
+ok( !$type->is_subtype_of("ThisTypeDoesNotExist"), "not subtype of unknown type name" );
+ok( !$type->is_a_type_of("ThisTypeDoesNotExist"), "not type of unknown type name" );
+
+ok( find_type_constraint("Bar")->check(FooC->new), "Foo passes Bar" );
+ok( find_type_constraint("Bar")->check(BarC->new), "Bar passes Bar" );
+ok( !find_type_constraint("Gorch")->check(BarC->new), "but Bar doesn't pass Gorch");
 
-ok( find_type_constraint("Beep")->check( bless {} => 'Beep' ), "Beep passes Beep" );
 my $boop = find_type_constraint("Boop");
 ok( $boop->has_message, 'Boop has a message');
-my $error = $boop->get_message(Foo->new);
+my $error = $boop->get_message(FooC->new);
 like( $error, qr/is not a Boop/,  'boop gives correct error message');
 
 
@@ -55,3 +63,4 @@ ok( $type->equals(Moose::Meta::TypeConstraint::Role->new( name => "Oink", role =
 ok( !$type->equals(Moose::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Bar" )), "doesn't equal other anon constraint" );
 ok( $type->is_subtype_of(Moose::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Bar" )), "subtype of other anon constraint" );
 
+done_testing;