diff options
author | Sergio Bertolin <sbertolin@solidgear.es> | 2015-09-29 10:54:43 +0000 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-29 13:42:32 +0200 |
commit | 2d1f509acf6bab68d4b1f092a0f4b8fc8da5e125 (patch) | |
tree | 7e962989c02996fe3454c3350ea0aeb51772b47a /build | |
parent | 933121c66f65ee4a3ac8b0741741b1445b50afa5 (diff) | |
download | nextcloud-server-2d1f509acf6bab68d4b1f092a0f4b8fc8da5e125.tar.gz nextcloud-server-2d1f509acf6bab68d4b1f092a0f4b8fc8da5e125.zip |
added delete user test
Diffstat (limited to 'build')
-rw-r--r-- | build/integration/features/provisioning-v1.feature | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature index aa3b31260e7..9e3d2df50bb 100644 --- a/build/integration/features/provisioning-v1.feature +++ b/build/integration/features/provisioning-v1.feature @@ -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 |