Skip to content

Commit

Permalink
Add test for deleting file different case
Browse files Browse the repository at this point in the history
  • Loading branch information
davitol committed Nov 21, 2018
1 parent 2b09f88 commit 47b5c58
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/acceptance/features/apiWebdavOperations/deleteFile.feature
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,15 @@ Feature: delete file
| dav_version |
| old |
| new |

Scenario Outline: delete a file when 2 files exist with different case
Given using <dav_version> DAV path
And user "user0" has uploaded file with content "uploaded content" to "/textfile1.txt"
And user "user0" has uploaded file with content "uploaded content" to "/TextFile1.txt"
Then the HTTP status code should be "204"
And as "user0" file "/textfile1.txt" should not exist
And as "user0" file "/TextFile1.txt" should exist
Examples:
| dav_version |
| old |
| new |

0 comments on commit 47b5c58

Please sign in to comment.