diff options
Diffstat (limited to 'build/integration')
-rw-r--r-- | build/integration/features/provisioning-v1.feature | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature index fd925e2af5d..2c9564bcdcf 100644 --- a/build/integration/features/provisioning-v1.feature +++ b/build/integration/features/provisioning-v1.feature @@ -26,8 +26,7 @@ Feature: provisioning 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 | + When sending "DELETE" to "/cloud/users/brand-new-user" Then the status code should be "200" And user "brand-new-user" does not exist @@ -42,3 +41,11 @@ Feature: provisioning Then the status code should be "200" And group "new-group" exists + + Scenario: Delete a group + Given As an "admin" + And group "new-group" exists + When sending "DELETE" to "/cloud/groups/new-group" + Then the status code should be "200" + And group "new-group" does not exist + |