Skip testBlobAccess on filesytem

Follow on to 52dc1a3ccf.
This commit is contained in:
Andrew Gaul 2016-01-20 23:46:06 -08:00
parent edacad2b6e
commit 7b3a300d51
1 changed files with 6 additions and 0 deletions

View File

@ -29,6 +29,7 @@ import org.jclouds.blobstore.integration.internal.BaseBlobStoreIntegrationTest;
import org.jclouds.filesystem.reference.FilesystemConstants;
import org.jclouds.filesystem.utils.TestUtils;
import org.testng.annotations.Test;
import org.testng.SkipException;
@Test(groups = { "integration" }, singleThreaded = true, testName = "blobstore.FilesystemBlobIntegrationTest")
public class FilesystemBlobIntegrationTest extends BaseBlobIntegrationTest {
@ -87,4 +88,9 @@ public class FilesystemBlobIntegrationTest extends BaseBlobIntegrationTest {
super.checkUserMetadata(userMetadata1, userMetadata2);
}
}
@Override
public void testSetBlobAccess() throws Exception {
throw new SkipException("filesystem does not support anonymous access");
}
}