X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F001_mouse%2F052-undefined-type-in-union.t;fp=t%2F001_mouse%2F052-undefined-type-in-union.t;h=e264fb6d776d819f28c948c14c3c30de50c11d97;hb=718b5d9b8e6a55aaefbf982d61d28c97a646a258;hp=b2c1235521c023af7fd7654f7d6c71aa02ad03ea;hpb=3f1fa307347e5a4312c17e9e8da1eeb116b0a2f7;p=gitmo%2FMouse.git diff --git a/t/001_mouse/052-undefined-type-in-union.t b/t/001_mouse/052-undefined-type-in-union.t index b2c1235..e264fb6 100644 --- a/t/001_mouse/052-undefined-type-in-union.t +++ b/t/001_mouse/052-undefined-type-in-union.t @@ -2,7 +2,8 @@ use strict; use warnings; -use Test::More tests => 6; +use Test::More skip_all => 'suspending'; +use Test::More; use Mouse::Util::TypeConstraints; @@ -32,3 +33,4 @@ ok $t->check('Foo'); ok!$t->check(undef); ok!$t->check(bless {}, 'Foo'); +done_testing;