mirror of https://github.com/apache/jclouds.git
Skip unimplemented test with transient blobstore
This commit is contained in:
parent
82b9704e52
commit
81c8b7bedc
|
@ -16,7 +16,10 @@
|
||||||
*/
|
*/
|
||||||
package org.jclouds.blobstore.integration;
|
package org.jclouds.blobstore.integration;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
import org.jclouds.blobstore.integration.internal.BaseBlobIntegrationTest;
|
import org.jclouds.blobstore.integration.internal.BaseBlobIntegrationTest;
|
||||||
|
import org.testng.SkipException;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -29,4 +32,9 @@ public class TransientBlobIntegrationTest extends BaseBlobIntegrationTest {
|
||||||
public TransientBlobIntegrationTest() {
|
public TransientBlobIntegrationTest() {
|
||||||
provider = "transient";
|
provider = "transient";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void testPutIncorrectContentMD5() throws InterruptedException, IOException {
|
||||||
|
throw new SkipException("not yet implemented");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue