Updated Branches: refs/heads/master 8bf534cc3 -> 0722ce71a
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/0722ce71 Tree: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/tree/0722ce71 Diff: http://git-wip-us.apache.org/repos/asf/incubator-jclouds/diff/0722ce71 Branch: refs/heads/master Commit: 0722ce71af1abac9aae9b86e435472582b371276 Parents: 8bf534c Author: Andrew Gaul <[email protected]> Authored: Sun Oct 13 19:54:15 2013 -0700 Committer: Andrew Gaul <[email protected]> Committed: Sun Oct 13 20:01:44 2013 -0700 ---------------------------------------------------------------------- .../blobstore/integration/SwiftBlobIntegrationLiveTest.java | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-jclouds/blob/0722ce71/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 0381909..6331988 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 {
