diff options
author | Sergio Bertolin <sbertolin@solidgear.es> | 2015-09-30 16:57:02 +0000 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2015-10-06 10:30:31 +0200 |
commit | ac478b19103c14990a5ca023362d87e7b7eeba55 (patch) | |
tree | dde0a5b3d8e2e1214749341d810f1b5431426e59 | |
parent | 0e3836ed48bfa14d15a2a32efd4fdc3a125e0c2b (diff) | |
download | nextcloud-server-ac478b19103c14990a5ca023362d87e7b7eeba55.tar.gz nextcloud-server-ac478b19103c14990a5ca023362d87e7b7eeba55.zip |
added edit user test
-rw-r--r-- | build/integration/features/provisioning-v1.feature | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature index 6e2076da6a9..384452d50a3 100644 --- a/build/integration/features/provisioning-v1.feature +++ b/build/integration/features/provisioning-v1.feature @@ -22,6 +22,18 @@ Feature: provisioning And user "brand-new-user" exists + Scenario: Edit a user + Given As an "admin" + And user "brand-new-user" exists + When sending "PUT" to "/cloud/users/brand-new-user" with + | key | quota | + | value | 12MB | + | key | email | + | value | brand-new-user@gmail.com | + Then the status code should be "100" + And user "brand-new-user" exists + + Scenario: Delete a user Given As an "admin" And user "brand-new-user" exists |