nacx commented on this pull request.
> +
+ api.deviceApi("93907f48-adfe-43ed-ad89-0e6e83721a54").delete("1");
+
+ assertEquals(server.getRequestCount(), 1);
+ assertSent(server, "DELETE",
"/projects/93907f48-adfe-43ed-ad89-0e6e83721a54/devices/1");
+ }
+
+ public void testDeleteDeviceReturns404() throws InterruptedException {
+ server.enqueue(response404());
+
+ api.deviceApi("93907f48-adfe-43ed-ad89-0e6e83721a54").delete("1");
+
+ assertEquals(server.getRequestCount(), 1);
+ assertSent(server, "DELETE",
"/projects/93907f48-adfe-43ed-ad89-0e6e83721a54/devices/1");
+ }
+
Still missing mock tests for the `actions` method?
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/345#pullrequestreview-17969490