> +   @Test
> +   public void testCreateContainerInLocation() {
> +      assertThat(blobStore.createContainerInLocation(null, 
> CONTAINER_NAME)).isTrue();
> +      assertThat(blobStore.containerExists(CONTAINER_NAME)).isTrue();
> +   }
> +
> +   @Test
> +   public void testDeleteContainer() {
> +      assertThat(blobStore.createContainerInLocation(null, 
> CONTAINER_NAME)).isTrue();
> +      assertThat(blobStore.containerExists(CONTAINER_NAME)).isTrue();
> +      blobStore.deleteContainer(CONTAINER_NAME);
> +      assertThat(blobStore.containerExists(CONTAINER_NAME)).isFalse();
> +   }
> +
> +   @Test
> +   public void testPutBlob() {

Is chunked data tested someplace else?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/176/files#r31478805

Reply via email to