azureblob does not support expires header

This commit is contained in:
adriancole 2013-03-21 09:07:23 -07:00
parent fc9c484126
commit 0c09140f54
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,7 @@ import java.util.concurrent.ExecutionException;
import org.jclouds.blobstore.domain.Blob;
import org.jclouds.blobstore.integration.internal.BaseBlobIntegrationTest;
import org.testng.SkipException;
import org.testng.annotations.Test;
/**
@ -39,6 +40,10 @@ public class AzureBlobIntegrationLiveTest extends BaseBlobIntegrationTest {
// this currently fails
}
public void testCreateBlobWithExpiry() throws InterruptedException {
throw new SkipException("Expires header unsupported: http://msdn.microsoft.com/en-us/library/windowsazure/dd179404.aspx#Subheading3");
}
@Override
@Test(expectedExceptions = IllegalArgumentException.class)
public void testPutObjectStream() throws InterruptedException, IOException, ExecutionException {