diff options
author | Sergio BertolĂn <sbertolin@solidgear.es> | 2016-08-26 10:52:11 +0000 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-08-30 17:23:49 +0200 |
commit | 86cfcde5e990fdd165f24d1b11abd43a5b391595 (patch) | |
tree | 9d6c6b6defb8257d7b18faadcae025a89d7ae89c /build | |
parent | 7106129baac765c7296ccebf70910a83058ae3d7 (diff) | |
download | nextcloud-server-86cfcde5e990fdd165f24d1b11abd43a5b391595.tar.gz nextcloud-server-86cfcde5e990fdd165f24d1b11abd43a5b391595.zip |
Changed enabled/disabled app in provisioning api tests
Diffstat (limited to 'build')
-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 38ed5213b19..63f8bcec5cc 100644 --- a/build/integration/features/provisioning-v1.feature +++ b/build/integration/features/provisioning-v1.feature @@ -295,6 +295,7 @@ Feature: provisioning | theming | | updatenotification | | workflowengine | + | files_external | Scenario: get app info Given As an "admin" @@ -304,19 +305,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: disable an user Given As an "admin" |