Use "testing" instead of "user_ldap" as test app

This commit is contained in:
Lukas Reschke 2016-08-31 10:40:17 +02:00
parent 81c18f5aa7
commit 84c742b95e
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
1 changed files with 6 additions and 6 deletions

View File

@ -305,19 +305,19 @@ Feature: provisioning
Scenario: enable an app
Given As an "admin"
And app "user_ldap" is disabled
When sending "POST" to "/cloud/apps/user_ldap"
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 "user_ldap" is enabled
And app "testing" is enabled
Scenario: disable an app
Given As an "admin"
And app "user_ldap" is enabled
When sending "DELETE" to "/cloud/apps/user_ldap"
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 "user_ldap" is disabled
And app "testing" is disabled
Scenario: disable an user
Given As an "admin"