Updated Branches: refs/heads/1.6.x 13e55349a -> 962003bb0
Skip testCreateBlobWithExpiry for Swift jclouds does not implement this functionality. Now all tests pass for cloudfiles-us. Project: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/commit/962003bb Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/tree/962003bb Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/diff/962003bb Branch: refs/heads/1.6.x Commit: 962003bb0b36bd47a010030e8664a49db5ebd846 Parents: 13e5534 Author: Andrew Gaul <[email protected]> Authored: Sun Oct 13 19:54:15 2013 -0700 Committer: Andrew Gaul <[email protected]> Committed: Sun Oct 13 20:09:57 2013 -0700 ---------------------------------------------------------------------- .../blobstore/integration/SwiftBlobIntegrationLiveTest.java | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-jclouds/blob/962003bb/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftBlobIntegrationLiveTest.java ---------------------------------------------------------------------- diff --git a/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftBlobIntegrationLiveTest.java b/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftBlobIntegrationLiveTest.java index c331bcf..090fd61 100644 --- a/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftBlobIntegrationLiveTest.java +++ b/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftBlobIntegrationLiveTest.java @@ -29,6 +29,7 @@ import org.jclouds.blobstore.options.PutOptions; import org.jclouds.openstack.keystone.v2_0.config.KeystoneProperties; import org.jclouds.openstack.swift.blobstore.strategy.MultipartUpload; import org.testng.ITestContext; +import org.testng.SkipException; import org.testng.annotations.BeforeClass; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; @@ -72,6 +73,12 @@ public class SwiftBlobIntegrationLiveTest extends BaseBlobIntegrationTest { // not supported in swift } + @Override + @Test + public void testCreateBlobWithExpiry() throws InterruptedException { + throw new SkipException("not yet implemented"); + } + @BeforeClass(groups = { "integration", "live" }, dependsOnMethods = "setupContext") @Override public void setUpResourcesOnThisThread(ITestContext testContext) throws Exception {
