mirror of https://github.com/apache/jclouds.git
Move the skipped tests.
Since the delimiter and prefix tests were moved to BaseContainerIntegrationTest (from BaseContainerLiveTest), need to do the same for google.
This commit is contained in:
parent
e492ba641a
commit
428d909562
|
@ -105,4 +105,14 @@ public class GoogleCloudStorageContainerIntegrationLiveTest extends BaseContaine
|
||||||
public void testListMarkerAfterLastKey() throws Exception {
|
public void testListMarkerAfterLastKey() throws Exception {
|
||||||
throw new SkipException("cannot specify arbitrary markers");
|
throw new SkipException("cannot specify arbitrary markers");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void testContainerListWithPrefix() {
|
||||||
|
throw new SkipException("Prefix option has not been plumbed down to GCS");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void testDelimiterList() {
|
||||||
|
throw new SkipException("Prefix option has not been plumbed down to GCS");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,6 @@ 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" })
|
||||||
|
@ -34,14 +33,4 @@ 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");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void testDelimiterList() {
|
|
||||||
throw new SkipException("Prefix option has not been plumbed down to GCS");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue