mirror of https://github.com/apache/jclouds.git
Skip testSetContainerAccess for local blobstores
These lack a public HTTP endpoint needed for this test.
This commit is contained in:
parent
ffa7c5c587
commit
37f307ecd0
|
@ -185,4 +185,10 @@ public class FilesystemContainerIntegrationTest extends BaseContainerIntegration
|
|||
}
|
||||
return super.getBlobsToEscape();
|
||||
}
|
||||
|
||||
@Override
|
||||
@Test(groups = { "integration", "live" })
|
||||
public void testSetContainerAccess() throws Exception {
|
||||
throw new SkipException("transient does not support anonymous access");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -32,6 +32,7 @@ import org.jclouds.blobstore.domain.StorageMetadata;
|
|||
import org.jclouds.blobstore.integration.internal.BaseContainerIntegrationTest;
|
||||
import org.jclouds.domain.Location;
|
||||
import org.testng.annotations.Test;
|
||||
import org.testng.SkipException;
|
||||
|
||||
import com.google.common.collect.ImmutableMap;
|
||||
|
||||
|
@ -80,4 +81,10 @@ public class TransientContainerIntegrationTest extends BaseContainerIntegrationT
|
|||
created = blobStore.createContainerInLocation(location, container);
|
||||
assertFalse(created);
|
||||
}
|
||||
|
||||
@Override
|
||||
@Test(groups = { "integration", "live" })
|
||||
public void testSetContainerAccess() throws Exception {
|
||||
throw new SkipException("filesystem does not support anonymous access");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue