> + @Test
> + protected void blobExists() throws Exception {
> +
> + Assert.assertEquals(this.blobStore.blobExists(this.container,
> this.blobName), false);
> + Blob blob = this.blobStore.blobBuilder(this.blobName).build();
> + blob.setPayload(this.payload);
> + this.blobStore.putBlob(this.container, blob);
> + Assert.assertEquals(this.blobStore.blobExists(this.container,
> this.blobName), true);
> + }
> +
> + /**
> + * This test requires an extra external file called BigBlob.zip after
> adding
> + * it this can be activated Purpose is to test a blob with a larger size
> + *
> + */
> + //@Test
Why disabled? Would prefer `@Test(enabled=false) // TODO <some explanation
why>` rather than just comment out annotation.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/45/files#r14715401