mirror of https://github.com/apache/jclouds.git
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:
parent
e76c59fef4
commit
7be0753e74
|
@ -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");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue