-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A bit of clean up in graph #1081
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,11 +31,14 @@ public void canCRUDUser() throws Exception { | |
//LIST | ||
List<User> userList = graphRbacManager.users().list(); | ||
Assert.assertNotNull(userList); | ||
User user = graphRbacManager.users().define("jeffrolfnlu@hotmail.com") | ||
User user = graphRbacManager.users().define("azuresdk@outlook.com") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we delete this user after test is done? not sure if we can do so. But this test is not doing much once it run for first time as this user will always be there for ever. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This test is not functional. For now it's just a placeholder. |
||
.withDisplayName("Test User 309") | ||
.withPassword("Pa$$w0rd") | ||
.withMailNickname("") | ||
.withMailNickname(null) | ||
.create(); | ||
Assert.assertNotNull(user); | ||
Assert.assertEquals("Test User 309", user.displayName()); | ||
Assert.assertEquals("azuresdk@outlook.com", user.mail()); | ||
} | ||
|
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of promising when it will be implemented, which we probably shouldn't do, we could just say "Not yet implemented".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will be done in a few days. So I'm lying anyways.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, ok. Well, but if a bus runs you over in the meantime (which I hope it doesn't!) there is a chance we'll ship it as is, so...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix it, not sure why the new Github doesn't hide this