Skip tests for strict constructor on Moose
[gitmo/Mouse.git] / t / 001_mouse / 809-overwrite-builtin-subtype.t
CommitLineData
d3982c7e 1use strict;
2use warnings;
3use Test::More tests => 1;
4
5eval {
6 package Request;
3b46bd49 7 use Mouse::Util::TypeConstraints;
d3982c7e 8
3fa6f35d 9 type 'Int' => where { 1};
d3982c7e 10};
7dbebb1b 11like $@, qr/The type constraint 'Int' has already been created in Mouse::Util::TypeConstraints and cannot be created again in Request/;