From 94452a97cd1fe2820f6f20520955c96c9b79b125 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Mon, 16 Sep 2013 02:37:46 -0700 Subject: [PATCH] Skip unimplemented test with transient blobstore --- .../integration/TransientBlobIntegrationTest.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/blobstore/src/test/java/org/jclouds/blobstore/integration/TransientBlobIntegrationTest.java b/blobstore/src/test/java/org/jclouds/blobstore/integration/TransientBlobIntegrationTest.java index 0c784201de..a87a179fdc 100644 --- a/blobstore/src/test/java/org/jclouds/blobstore/integration/TransientBlobIntegrationTest.java +++ b/blobstore/src/test/java/org/jclouds/blobstore/integration/TransientBlobIntegrationTest.java @@ -16,7 +16,10 @@ */ package org.jclouds.blobstore.integration; +import java.io.IOException; + import org.jclouds.blobstore.integration.internal.BaseBlobIntegrationTest; +import org.testng.SkipException; import org.testng.annotations.Test; /** @@ -29,4 +32,9 @@ public class TransientBlobIntegrationTest extends BaseBlobIntegrationTest { public TransientBlobIntegrationTest() { provider = "transient"; } + + @Override + public void testPutIncorrectContentMD5() throws InterruptedException, IOException { + throw new SkipException("not yet implemented"); + } }