Skip test which cannot run on openstack-swift

This commit is contained in:
Andrew Gaul 2015-01-24 15:12:38 -08:00
parent 7863df69a6
commit 34733e991b
1 changed files with 6 additions and 0 deletions

View File

@ -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");
}
}