Used kebab case for example table header name
This commit is contained in:
@@ -46,13 +46,13 @@ Feature: delete file
|
||||
|
||||
Scenario Outline: delete file from folder with dots in the path
|
||||
Given using <dav-path-version> DAV path
|
||||
And user "Alice" has created folder "<folder_name>"
|
||||
And user "Alice" has uploaded file with content "uploaded content for file name with dots" to "<folder_name>/<file_name>"
|
||||
When user "Alice" deletes file "<folder_name>/<file_name>" using the WebDAV API
|
||||
And user "Alice" has created folder "<folder-name>"
|
||||
And user "Alice" has uploaded file with content "uploaded content for file name with dots" to "<folder-name>/<file-name>"
|
||||
When user "Alice" deletes file "<folder-name>/<file-name>" using the WebDAV API
|
||||
Then the HTTP status code should be "204"
|
||||
And as "Alice" file "<folder_name>/<file_name>" should not exist
|
||||
And as "Alice" file "<folder-name>/<file-name>" should not exist
|
||||
Examples:
|
||||
| dav-path-version | folder_name | file_name |
|
||||
| dav-path-version | folder-name | file-name |
|
||||
| old | /upload. | abc. |
|
||||
| old | /upload. | abc . |
|
||||
| old | /upload.1 | abc.txt |
|
||||
@@ -70,7 +70,7 @@ Feature: delete file
|
||||
|
||||
@skipOnRevaMaster
|
||||
Examples:
|
||||
| dav-path-version | folder_name | file_name |
|
||||
| dav-path-version | folder-name | file-name |
|
||||
| spaces | /upload. | abc. |
|
||||
| spaces | /upload...1.. | abc...txt.. |
|
||||
| spaces | /upload.1 | abc.txt |
|
||||
@@ -82,12 +82,12 @@ Feature: delete file
|
||||
|
||||
Scenario Outline: delete a file with comma in the filename
|
||||
Given using <dav-path-version> DAV path
|
||||
And user "Alice" has uploaded file with content "file with comma in filename" to <filename>
|
||||
When user "Alice" deletes file <filename> using the WebDAV API
|
||||
And user "Alice" has uploaded file with content "file with comma in filename" to <file-name>
|
||||
When user "Alice" deletes file <file-name> using the WebDAV API
|
||||
Then the HTTP status code should be "204"
|
||||
And as "Alice" file <filename> should not exist
|
||||
And as "Alice" file <file-name> should not exist
|
||||
Examples:
|
||||
| dav-path-version | filename |
|
||||
| dav-path-version | file-name |
|
||||
| old | "sample,1.txt" |
|
||||
| old | ",,,.txt" |
|
||||
| old | ",,,.," |
|
||||
@@ -97,7 +97,7 @@ Feature: delete file
|
||||
|
||||
@skipOnRevaMaster
|
||||
Examples:
|
||||
| dav-path-version | filename |
|
||||
| dav-path-version | file-name |
|
||||
| spaces | "sample,1.txt" |
|
||||
| spaces | ",,,.txt" |
|
||||
| spaces | ",,,.," |
|
||||
|
||||
Reference in New Issue
Block a user