don't initialize lazy attrs with defaults in the constructor (mo)
[gitmo/Moose.git] / t / 040_type_constraints / 011_container_type_constraint.t
index c27d4b8..17ebe3d 100644 (file)
@@ -3,8 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 24;
-use Test::Exception;
+use Test::More;
 
 BEGIN {
     use_ok('Moose::Util::TypeConstraints');
@@ -71,3 +70,5 @@ ok(!$array_of_array_of_ints->check(
     my $param_type = $anon_type->type_parameter;
     isa_ok( $param_type, 'Moose::Meta::TypeConstraint::Class' );
 }
+
+done_testing;