alibazlamit commented on this pull request.
> + public void testGet() {
+ User result = userApi().get(currentUser.id());
+
+ assertEquals(result.id(), currentUser.id());
+ }
+
+ @Test(dependsOnMethods = "testGet")
+ public void testUpdate() throws InterruptedException {
+ //this test will fail too since its not allowed to update other users
from the API
+// String updatedDescription = "updatejclouds";
+//
+// User updateResult = userApi().update(currentUser.id(),
User.UpdateUser.builder()
+// .description(updatedDescription)
+// .build());
+//
+// assertEquals(updateResult.description(), updatedDescription);
we could but many of those test will break the flow since it either blocks
IP's, disable the user or change the API key, how would you like to proceed
with this?
--
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/336