Used kebab case for example table header name
This commit is contained in:
@@ -18,20 +18,20 @@ Feature: files and folders can be deleted from the trashbin
|
||||
Given using <dav-path-version> DAV path
|
||||
And user "Alice" has uploaded file with content "file with comma" to "sample,0.txt"
|
||||
And user "Alice" has uploaded file with content "file with comma" to "sample,1.txt"
|
||||
And user "Alice" has deleted file "<filename1>"
|
||||
And user "Alice" has deleted file "<filename2>"
|
||||
And user "Alice" has deleted file "<file-name>"
|
||||
And user "Alice" has deleted file "<file-name-2>"
|
||||
When user "Alice" empties the trashbin using the trashbin API
|
||||
Then the HTTP status code should be "204"
|
||||
And as "Alice" the file with original path "<filename1>" should not exist in the trashbin
|
||||
And as "Alice" the file with original path "<filename2>" should not exist in the trashbin
|
||||
And as "Alice" the file with original path "<file-name>" should not exist in the trashbin
|
||||
And as "Alice" the file with original path "<file-name-2>" should not exist in the trashbin
|
||||
Examples:
|
||||
| dav-path-version | filename1 | filename2 |
|
||||
| dav-path-version | file-name | file-name-2 |
|
||||
| new | textfile0.txt | textfile1.txt |
|
||||
| new | sample,0.txt | sample,1.txt |
|
||||
|
||||
@skipOnRevaMaster
|
||||
Examples:
|
||||
| dav-path-version | filename1 | filename2 |
|
||||
| dav-path-version | file-name | file-name-2 |
|
||||
| spaces | textfile0.txt | textfile1.txt |
|
||||
| spaces | sample,0.txt | sample,1.txt |
|
||||
|
||||
|
||||
@@ -294,21 +294,21 @@ Feature: files and folders exist in the trashbin after being deleted
|
||||
|
||||
Scenario Outline: user with unusual username deletes a file
|
||||
Given using <dav-path-version> DAV path
|
||||
And user "<username>" has been created with default attributes and without skeleton files
|
||||
And user "<username>" has uploaded file with content "to delete" to "/textfile0.txt"
|
||||
When user "<username>" deletes file "/textfile0.txt" using the WebDAV API
|
||||
And user "<user>" has been created with default attributes and without skeleton files
|
||||
And user "<user>" has uploaded file with content "to delete" to "/textfile0.txt"
|
||||
When user "<user>" deletes file "/textfile0.txt" using the WebDAV API
|
||||
Then the HTTP status code should be "204"
|
||||
And as "<username>" file "/textfile0.txt" should exist in the trashbin
|
||||
But as "<username>" file "/textfile0.txt" should not exist
|
||||
And as "<user>" file "/textfile0.txt" should exist in the trashbin
|
||||
But as "<user>" file "/textfile0.txt" should not exist
|
||||
Examples:
|
||||
| dav-path-version | username |
|
||||
| dav-path-version | user |
|
||||
| new | dash-123 |
|
||||
| new | null |
|
||||
| new | nil |
|
||||
|
||||
@skipOnRevaMaster
|
||||
Examples:
|
||||
| dav-path-version | username |
|
||||
| dav-path-version | user |
|
||||
| spaces | dash-123 |
|
||||
| spaces | null |
|
||||
| spaces | nil |
|
||||
|
||||
Reference in New Issue
Block a user