r13131@rob-kinyons-powerbook58: rob | 2006-05-14 20:22:12 -0400
rkinyon [Thu, 25 May 2006 18:21:24 +0000 (18:21 +0000)]
 Added LONG_TEST environment variable to skip long-running tests

t/03_bighash.t
t/05_bigarray.t
t/08_deephash.t
t/09_deeparray.t

index cf082bd..9b81f87 100644 (file)
@@ -2,10 +2,16 @@
 # DBM::Deep Test
 ##
 use strict;
-use Test::More tests => 5;
+use Test::More;
+
+plan skip_all => "You must set \$ENV{LONG_TESTS} to run the long tests"
+    unless $ENV{LONG_TESTS};
+
 use Test::Deep;
 use t::common qw( new_fh );
 
+plan tests => 5;
+
 use_ok( 'DBM::Deep' );
 
 diag "This test can take up to a minute to run. Please be patient.";
index 24b9071..81c5046 100644 (file)
@@ -2,7 +2,12 @@
 # DBM::Deep Test
 ##
 use strict;
-use Test::More tests => 4;
+use Test::More;
+
+plan skip_all => "You must set \$ENV{LONG_TESTS} to run the long tests"
+    unless $ENV{LONG_TESTS};
+
+plan tests => 4;
 use t::common qw( new_fh );
 
 use_ok( 'DBM::Deep' );
index ff7a9f3..f69543c 100644 (file)
@@ -2,7 +2,12 @@
 # DBM::Deep Test
 ##
 use strict;
-use Test::More tests => 5;
+use Test::More;
+
+plan skip_all => "You must set \$ENV{LONG_TESTS} to run the long tests"
+    unless $ENV{LONG_TESTS};
+
+plan tests => 5;
 use t::common qw( new_fh );
 
 diag "This test can take up to a minute to run. Please be patient.";
index d47ecc8..ad134fa 100644 (file)
@@ -2,7 +2,12 @@
 # DBM::Deep Test
 ##
 use strict;
-use Test::More tests => 3;
+use Test::More;
+
+plan skip_all => "You must set \$ENV{LONG_TESTS} to run the long tests"
+    unless $ENV{LONG_TESTS};
+
+plan tests => 3;
 use t::common qw( new_fh );
 
 diag "This test can take up to a minute to run. Please be patient.";