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:
Timur Alperovich 2015-07-14 15:06:16 -07:00
parent e492ba641a
commit 428d909562
2 changed files with 10 additions and 11 deletions

View File

@ -105,4 +105,14 @@ public class GoogleCloudStorageContainerIntegrationLiveTest extends BaseContaine
public void testListMarkerAfterLastKey() throws Exception {
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");
}
}

View File

@ -20,7 +20,6 @@ import java.util.Properties;
import org.jclouds.blobstore.integration.internal.BaseContainerLiveTest;
import org.jclouds.googlecloud.internal.TestProperties;
import org.testng.SkipException;
import org.testng.annotations.Test;
@Test(groups = { "live" })
@ -34,14 +33,4 @@ public class GoogleCloudStorageContainerLiveTest extends BaseContainerLiveTest {
TestProperties.setGoogleCredentialsFromJson(provider);
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");
}
}