From: gfx Date: Tue, 29 Sep 2009 06:55:38 +0000 (+0900) Subject: Add tests for $tc->is_a_type_of X-Git-Tag: 0.37_01~37 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=f7d4e5d119852d41c6c7d65eb8161d913a225afe Add tests for $tc->is_a_type_of --- diff --git a/t/039-subtype.t b/t/039-subtype.t index 5c4d9e1..755c405 100644 --- a/t/039-subtype.t +++ b/t/039-subtype.t @@ -1,9 +1,11 @@ #!/usr/bin/env perl use strict; use warnings; -use Test::More tests => 2; +use Test::More tests => 7; use Test::Exception; +use Mouse::Util::TypeConstraints; + do { package My::Class; use Mouse; @@ -24,3 +26,12 @@ ok(My::Class->new(name => 'foo')); throws_ok { My::Class->new(name => '') } qr/^Attribute \(name\) does not pass the type constraint because: The string is empty!/; +my $st = subtype as 'Str', where{ length }; + +ok $st->is_a_type_of('Str'); +ok!$st->is_a_type_of('NoemptyStr'); + +ok $st->check('Foo'); +ok!$st->check(undef); +ok!$st->check(''); +