Used kebab case for example table header name

This commit is contained in:
Prarup Gurung
2024-03-21 10:04:25 +05:45
parent 84a14c5953
commit fcba2d34a4
26 changed files with 918 additions and 918 deletions
@@ -14,12 +14,12 @@ Feature: create file or folder named similar to Shares folder
Scenario Outline: create a folder with a name similar to Shares
Given using spaces DAV path
When user "Brian" creates folder "<folder_name>" using the WebDAV API
When user "Brian" creates folder "<folder-name>" using the WebDAV API
Then the HTTP status code should be "201"
And for user "Brian" the space "Personal" should contain these entries:
| <folder_name>/ |
| <folder-name>/ |
Examples:
| folder_name |
| folder-name |
| Share |
| shares |
| Share1 |
@@ -27,18 +27,18 @@ Feature: create file or folder named similar to Shares folder
Scenario Outline: create a file with a name similar to Shares
Given using spaces DAV path
When user "Brian" uploads file with content "some text" to "<file_name>" using the WebDAV API
When user "Brian" uploads file with content "some text" to "<file-name>" using the WebDAV API
Then the HTTP status code should be "201"
And the content of file "<file_name>" for user "Brian" should be "some text"
And the content of file "<file-name>" for user "Brian" should be "some text"
And for user "Brian" the space "Personal" should contain these entries:
| <file_name> |
| <file-name> |
And for user "Brian" the space "Shares" should contain these entries:
| FOLDER/ |
Examples:
| file_name |
| Share |
| shares |
| Share1 |
| file-name |
| Share |
| shares |
| Share1 |
Scenario: try to create a folder named Shares