Updated Branches: refs/heads/master 1fc5806ec -> 94452a97c
Skip unimplemented test with transient blobstore Project: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/commit/94452a97 Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/tree/94452a97 Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/diff/94452a97 Branch: refs/heads/master Commit: 94452a97cd1fe2820f6f20520955c96c9b79b125 Parents: 1fc5806 Author: Andrew Gaul <[email protected]> Authored: Mon Sep 16 02:37:46 2013 -0700 Committer: Andrew Gaul <[email protected]> Committed: Mon Sep 16 02:48:57 2013 -0700 ---------------------------------------------------------------------- .../blobstore/integration/TransientBlobIntegrationTest.java | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-jclouds/blob/94452a97/blobstore/src/test/java/org/jclouds/blobstore/integration/TransientBlobIntegrationTest.java ---------------------------------------------------------------------- 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 0c78420..a87a179 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"); + } }
