From ac478b19103c14990a5ca023362d87e7b7eeba55 Mon Sep 17 00:00:00 2001 From: Sergio Bertolin Date: Wed, 30 Sep 2015 16:57:02 +0000 Subject: [PATCH] added edit user test --- build/integration/features/provisioning-v1.feature | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature index 6e2076da6a..384452d50a 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