> + }
> +
> + @Test
> + public void testDelete() throws InterruptedException {
> + server.enqueue(
> + new MockResponse().setBody("")
> + );
> +
> + imageApi().deleteImage("some-id");
> + assertEquals(server.getRequestCount(), 1);
> + assertSent(server, "DELETE", "/images/some-id");
> + }
> +
> + private ImageApi imageApi() {
> + return api.imageApi();
> + }
All the methods in the Image API? As far as I can see they are already there
List, Get, Update, Delete. By fallbacks do you mean 404s? Because @devcsrj
commented
`You may remove the test for 404 fallback, as this is already tested in the
core.
Add a line note
`
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/242/files#r54401257