> +
> + assertNotNull(response);
> + assertEquals(response.getId(), BUCKET_NAME + "/allUsers");
> + assertEquals(response.getRole(), Role.WRITER);
> + }
> +
> + @Test(groups = "live", dependsOnMethods = "testUpdateBucketacl")
> + public void testListBucketacl() {
> + ListBucketAccessControls response =
> api().listBucketAccessControls(BUCKET_NAME);
> +
> + assertNotNull(response);
> + assertEquals(response.getKind(), Kind.BUCKET_ACCESS_CONTROLS);
> + assertNotNull(response.getItems());
> + }
> +
> + @Test(groups = "live", dependsOnMethods = "testUpdateBucketacl")
See comment for previous PR. If this test is not run single-threaded, this
could cause `testGetBucketacl` to blow up.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/35/files#r17682948