> + assertNull(api.delete("jclouds-test"));
> + }
> +
> + public void testListBackendServiceResponseIs2xx() {
> + HttpRequest request = getBasicRequest().method("GET")
> + .endpoint(ENDPOINT_BASE)
> + .build();
> + HttpResponse response = createResponse("/backend_service_list.json");
> +
> + BackendServiceApi api =
> requestsSendResponses(requestForScopes(COMPUTE_READONLY_SCOPE),
> + TOKEN_RESPONSE, request, response).backendServices();
> +
> + assertEquals(api.list().next(), new
> ParseBackendServiceListTest().expected());
> + }
> +
> + @Test(expectedExceptions = ResourceNotFoundException.class)
please delete tests like these. It is tough that we are still proliferating
expect tests; let's at least stop proliferating tests of default fallbacks.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/97/files#r20597908