Skip testCreateBlobWithExpiry for Swift

jclouds does not implement this functionality.  Now all tests pass for
cloudfiles-us.
This commit is contained in:
Andrew Gaul 2013-10-13 19:54:15 -07:00
parent 8bf534cc3a
commit 0722ce71af
1 changed files with 7 additions and 0 deletions

View File

@ -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 {