mirror of https://github.com/apache/jclouds.git
Skip test which cannot run on openstack-swift
This commit is contained in:
parent
7863df69a6
commit
34733e991b
|
@ -23,6 +23,7 @@ import java.util.Properties;
|
|||
|
||||
import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest;
|
||||
import org.testng.annotations.Test;
|
||||
import org.testng.SkipException;
|
||||
|
||||
@Test(groups = "live", testName = "SwiftContainerIntegrationLiveTest")
|
||||
public class SwiftContainerIntegrationLiveTest extends BaseContainerIntegrationTest {
|
||||
|
@ -51,4 +52,9 @@ public class SwiftContainerIntegrationLiveTest extends BaseContainerIntegrationT
|
|||
// ^^ squishy regex to deal with various formats of testng messages.
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void testDelimiter() throws Exception {
|
||||
throw new SkipException("openstack-swift does not implement pseudo-directories");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue