From 7c63a6baa623bf17c73a5e5aa38db07d81502109 Mon Sep 17 00:00:00 2001 From: Sergio Bertolin Date: Tue, 29 Sep 2015 15:05:52 +0000 Subject: [PATCH] added some deletion logic --- build/integration/features/provisioning-v1.feature | 11 +++++++++-- 1 file 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 +