JCLOUDS-894: Skip multipart tests on Atmos

This commit is contained in:
Andrew Gaul 2015-07-02 22:28:42 -07:00
parent bf93cadec6
commit 41d598b03f
1 changed files with 10 additions and 0 deletions

View File

@ -140,4 +140,14 @@ public class AtmosIntegrationLiveTest extends BaseBlobIntegrationTest {
public void testMultipartUploadMultipleParts() throws Exception {
throw new SkipException("Atmos does not support multipart uploads");
}
@Override
public void testPutMultipartByteSource() throws Exception {
throw new SkipException("Atmos does not support multipart uploads");
}
@Override
public void testPutMultipartInputStream() throws Exception {
throw new SkipException("Atmos does not support multipart uploads");
}
}