diff options
author | Sergio Bertolin <sbertolin@solidgear.es> | 2016-09-27 11:09:55 +0000 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-11-02 22:49:44 +0100 |
commit | a642a40f3fb0a1d90df99578e78091dc7bf668ad (patch) | |
tree | c2b9dcb886e1361a525f12723b0d4e42a0368624 /build/integration/features/favorites.feature | |
parent | 39573e602d5e38e4b71b3d197d08798dd9558659 (diff) | |
download | nextcloud-server-a642a40f3fb0a1d90df99578e78091dc7bf668ad.tar.gz nextcloud-server-a642a40f3fb0a1d90df99578e78091dc7bf668ad.zip |
Adapted favorites and dav2 features
Adapted sharing and external features, random failures in sharing:857
Added weddav related feature
Removed forgotten leftovers
Diffstat (limited to 'build/integration/features/favorites.feature')
-rw-r--r-- | build/integration/features/favorites.feature | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/build/integration/features/favorites.feature b/build/integration/features/favorites.feature index baf4eadb166..5e31e1902f8 100644 --- a/build/integration/features/favorites.feature +++ b/build/integration/features/favorites.feature @@ -3,7 +3,7 @@ Feature: favorite Given using api version "1" Scenario: Favorite a folder - Given using dav path "remote.php/webdav" + Given using old dav path And As an "admin" And user "user0" exists When user "user0" favorites element "/FOLDER" @@ -12,7 +12,7 @@ Feature: favorite And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "1" Scenario: Favorite and unfavorite a folder - Given using dav path "remote.php/webdav" + Given using old dav path And As an "admin" And user "user0" exists When user "user0" favorites element "/FOLDER" @@ -22,7 +22,7 @@ Feature: favorite And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "" Scenario: Favorite a file - Given using dav path "remote.php/webdav" + Given using old dav path And As an "admin" And user "user0" exists When user "user0" favorites element "/textfile0.txt" @@ -31,7 +31,7 @@ Feature: favorite And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "1" Scenario: Favorite and unfavorite a file - Given using dav path "remote.php/webdav" + Given using old dav path And As an "admin" And user "user0" exists When user "user0" favorites element "/textfile0.txt" @@ -41,7 +41,7 @@ Feature: favorite And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "" Scenario: Favorite a folder new endpoint - Given using dav path "remote.php/dav" + Given using new dav path And As an "admin" And user "user0" exists When user "user0" favorites element "/FOLDER" @@ -50,7 +50,7 @@ Feature: favorite And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "1" Scenario: Favorite and unfavorite a folder new endpoint - Given using dav path "remote.php/dav" + Given using new dav path And As an "admin" And user "user0" exists When user "user0" favorites element "/FOLDER" @@ -60,7 +60,7 @@ Feature: favorite And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "" Scenario: Favorite a file new endpoint - Given using dav path "remote.php/dav" + Given using new dav path And As an "admin" And user "user0" exists When user "user0" favorites element "/textfile0.txt" @@ -69,7 +69,7 @@ Feature: favorite And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "1" Scenario: Favorite and unfavorite a file new endpoint - Given using dav path "remote.php/dav" + Given using new dav path And As an "admin" And user "user0" exists When user "user0" favorites element "/textfile0.txt" |