]> source.dussan.org Git - nextcloud-server.git/commitdiff
Changed enabled/disabled app in provisioning api tests 1206/head
authorSergio Bertolín <sbertolin@solidgear.es>
Fri, 26 Aug 2016 10:52:11 +0000 (10:52 +0000)
committerLukas Reschke <lukas@statuscode.ch>
Wed, 31 Aug 2016 09:43:00 +0000 (11:43 +0200)
build/integration/features/provisioning-v1.feature

index 862285da92f0f96a4503ec0c8e25d3e35ff63e42..79ec0cf4db5a23a54e1463111d32bba02839f751 100644 (file)
@@ -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 "testing" is disabled
+               When sending "POST" to "/cloud/apps/testing"
                Then the OCS status code should be "100"
                And the HTTP status code should be "200"
-               And app "files_external" is enabled
+               And app "testing" 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 "testing" is enabled
+               When sending "DELETE" to "/cloud/apps/testing"
                Then the OCS status code should be "100"
                And the HTTP status code should be "200"
-               And app "files_external" is disabled
+               And app "testing" is disabled
 
        Scenario: disable an user
                Given As an "admin"