mirror of https://github.com/apache/jclouds.git
Skip testCreateBlobWithExpiry for Swift
jclouds does not implement this functionality. Now all tests pass for cloudfiles-us.
This commit is contained in:
parent
13e55349a3
commit
962003bb0b
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue