Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorSergio Bertolín <sbertolin@solidgear.es>2016-08-26 13:52:11 +0300
committerSergio Bertolín <sbertolin@solidgear.es>2016-08-30 17:57:02 +0300
commitc145ca0bac78b73b68cee1d8ac0b1b16bfab823a (patch)
treeed3d744c18685163cb9df6f756537d9cda2ec26a /build
parentd4d3e3b1289a5dab8ec01de94972e210b9537bcf (diff)
Changed enabled/disabled app in provisioning api tests
Diffstat (limited to 'build')
-rw-r--r--build/integration/features/provisioning-v1.feature13
1 files changed, 7 insertions, 6 deletions
diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature
index 342d43141fc..d51cda47b68 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: disable an user
Given As an "admin"