summary refs log tree commit diff
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-06-14 13:18:47 +0200
committerfranck cuny <franck@lumberjaph.net>2010-06-14 13:18:47 +0200
commit44f494d6fa9844ba129263e04d983b196e235bb2 (patch)
treea9e9fb4a342db0806df3bd90a4cfede0c3171375
parentremove kwalitee; fix POD (diff)
downloadnet-riak-44f494d6fa9844ba129263e04d983b196e235bb2.tar.gz
don't test unless we are in release mode
-rw-r--r--t/01_basic.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/01_basic.t b/t/01_basic.t
index f3f3dda..a17f425 100644
--- a/t/01_basic.t
+++ b/t/01_basic.t
@@ -4,7 +4,12 @@ use Test::More;
 use Net::Riak;
 use YAML::Syck;
 
-
+BEGIN {
+  unless ($ENV{RELEASE_TESTING}) {
+    require Test::More;
+    Test::More::plan(skip_all => 'these tests are for release candidate testing');
+  }
+}
 
 my $host = 'http://localhost:8098';
 my $bucket_name = 'test4';