modernize tests and require Test::More 0.88
Dave Rolsky [Sun, 4 Apr 2010 02:10:18 +0000 (21:10 -0500)]
Build.PL
t/basic.t

index 16ed57a..c5a358a 100644 (file)
--- a/Build.PL
+++ b/Build.PL
@@ -9,8 +9,10 @@ my $builder = Module::Build->new(
     module_name => 'MooseX::StrictConstructor',
     license     => 'perl',
     requires    => {
-        'Moose'      => '0.74',
-        'Test::More' => '0',
+        'Moose' => '0.74',
+    },
+    build_requires => {
+        'Test::More' => '0.88',
     },
     create_makefile_pl => 'passthrough',
     create_readme      => 1,
index 57ab8ad..9643630 100644 (file)
--- a/t/basic.t
+++ b/t/basic.t
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 15;
+use Test::More;
 
 {
 
@@ -184,3 +184,5 @@ like(
     $@, qr/unknown attribute.+: agent/,
     'ImmutableTricky still blows up on unknown params other than spy'
 );
+
+done_testing();