JCLOUDS-930: Skip the prefix test in GCS.

As the prefix option has not been plumbed down into GCS, we should
skip the prefix test.
This commit is contained in:
Timur Alperovich 2015-06-29 21:52:17 -07:00
parent e76c59fef4
commit 7be0753e74
1 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,7 @@ import java.util.Properties;
import org.jclouds.blobstore.integration.internal.BaseContainerLiveTest; import org.jclouds.blobstore.integration.internal.BaseContainerLiveTest;
import org.jclouds.googlecloud.internal.TestProperties; import org.jclouds.googlecloud.internal.TestProperties;
import org.testng.SkipException;
import org.testng.annotations.Test; import org.testng.annotations.Test;
@Test(groups = { "live" }) @Test(groups = { "live" })
@ -33,4 +34,9 @@ public class GoogleCloudStorageContainerLiveTest extends BaseContainerLiveTest {
TestProperties.setGoogleCredentialsFromJson(provider); TestProperties.setGoogleCredentialsFromJson(provider);
return TestProperties.apply(provider, super.setupProperties()); return TestProperties.apply(provider, super.setupProperties());
} }
@Override
public void testContainerListWithPrefix() {
throw new SkipException("Prefix option has not been plumbed down to GCS");
}
} }