diff options
author | Sergio Bertolín <sbertolin@solidgear.es> | 2016-08-26 10:52:11 +0000 |
---|---|---|
committer | Sergio Bertolín <sbertolin@solidgear.es> | 2016-08-31 10:48:23 +0000 |
commit | 4f64c16cc50c378d2eb3bf483d20621eea8c25d3 (patch) | |
tree | 5db69c57bcced631a85ee6c401ad1f5e20d2be70 | |
parent | e0ff7f80f562e70f185fc5ecb31d09d63d311563 (diff) | |
download | nextcloud-server-4f64c16cc50c378d2eb3bf483d20621eea8c25d3.tar.gz nextcloud-server-4f64c16cc50c378d2eb3bf483d20621eea8c25d3.zip |
Changed enabled/disabled app in provisioning api tests
-rw-r--r-- | build/integration/features/provisioning-v1.feature | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature index bc289777039..d359e721044 100644 --- a/build/integration/features/provisioning-v1.feature +++ b/build/integration/features/provisioning-v1.feature @@ -293,6 +293,7 @@ Feature: provisioning | provisioning_api | | systemtags | | updatenotification | + | files_external | Scenario: get app info Given As an "admin" @@ -302,19 +303,19 @@ Feature: provisioning Scenario: enable an app Given As an "admin" - And app "files_external" is disabled - When sending "POST" to "/cloud/apps/files_external" + And app "user_ldap" is disabled + When sending "POST" to "/cloud/apps/user_ldap" Then the OCS status code should be "100" And the HTTP status code should be "200" - And app "files_external" is enabled + And app "user_ldap" is enabled Scenario: disable an app Given As an "admin" - And app "files_external" is enabled - When sending "DELETE" to "/cloud/apps/files_external" + And app "user_ldap" is enabled + When sending "DELETE" to "/cloud/apps/user_ldap" Then the OCS status code should be "100" And the HTTP status code should be "200" - And app "files_external" is disabled + And app "user_ldap" is disabled Scenario: a subadmin can add users to groups the subadmin is responsible for Given As an "admin" |