Repository: jclouds Updated Branches: refs/heads/master 3ab2716a7 -> 7863df69a
Skip tests which cannot run on Atmos Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/7863df69 Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/7863df69 Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/7863df69 Branch: refs/heads/master Commit: 7863df69a6fdbc934aa7c0771a3f3e90ba325464 Parents: 3ab2716 Author: Andrew Gaul <[email protected]> Authored: Sat Jan 24 14:08:08 2015 -0800 Committer: Andrew Gaul <[email protected]> Committed: Sat Jan 24 14:08:08 2015 -0800 ---------------------------------------------------------------------- .../AtmosContainerIntegrationLiveTest.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/7863df69/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosContainerIntegrationLiveTest.java ---------------------------------------------------------------------- diff --git a/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosContainerIntegrationLiveTest.java b/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosContainerIntegrationLiveTest.java index 48dce51..9963451 100644 --- a/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosContainerIntegrationLiveTest.java +++ b/apis/atmos/src/test/java/org/jclouds/atmos/blobstore/integration/AtmosContainerIntegrationLiveTest.java @@ -23,6 +23,7 @@ import java.io.IOException; import org.jclouds.blobstore.domain.BlobMetadata; import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest; import org.testng.annotations.Test; +import org.testng.SkipException; @Test(groups = "live") public class AtmosContainerIntegrationLiveTest extends BaseContainerIntegrationTest { @@ -34,4 +35,19 @@ public class AtmosContainerIntegrationLiveTest extends BaseContainerIntegrationT // atmos doesn't support MD5 assertEquals(metadata.getContentMetadata().getContentMD5(), null); } + + @Override + public void testDelimiter() throws Exception { + throw new SkipException("Atmos does not use key names for markers"); + } + + @Override + public void testListMarkerAfterLastKey() throws Exception { + throw new SkipException("cannot specify arbitrary markers"); + } + + @Override + public void testListContainerWithZeroMaxResults() throws Exception { + throw new SkipException("Atmos requires a positive integer for max results"); + } }
