added delete user test

This commit is contained in:
Sergio Bertolin 2015-09-29 10:54:43 +00:00 committed by Thomas Müller
parent 933121c66f
commit 2d1f509acf
1 changed files with 8 additions and 0 deletions

View File

@ -22,3 +22,11 @@ Feature: provisioning
Then the status code should be "200"
And user "brand-new-user" exists
Scenario: Delete a user
Given As an "admin"
And user "brand-new-user" exists
When sending "POST" to "/cloud/users" with
| userid | brand-new-user |
Then the status code should be "200"
And user "brand-new-user" does not exist