> + Tag editedTag = new Tag.Builder()
> + .meta(meta)
> + .name("Edited Tag")
> + .resources(ImmutableList.of(
> + new TagResource.Builder()
> + .uuid(createdDrive.getUuid())
> + .build()
> + ))
> + .build();
> +
> + checkTag(editedTag, api.editTag(createdTag.getUuid(), editedTag));
> + }
> +
> + @Test(dependsOnMethods = {"testEditTag"})
> + public void testDeleteTag() throws Exception{
> + api.deleteTag(createdTag.getUuid());
What is this testing? That no exception is thrown? How do we know the tag is
gone?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/38/files#r7792756