DeleteUser deletes the user specified by username.
(username string)
| 113 | |
| 114 | // DeleteUser deletes the user specified by username. |
| 115 | func DeleteUser(username string) { |
| 116 | session := CF("delete-user", username, "-f") |
| 117 | Eventually(session).Should(Exit(0)) |
| 118 | } |
| 119 | |
| 120 | // CreateUserInOrgRole creates a user with a random username and password and gives them the specified role within |
| 121 | // a specific org. The new user's username and password are returned. |
no test coverage detected