Skip to content

Commit

Permalink
Review Address
Browse files Browse the repository at this point in the history
  • Loading branch information
SagarGi committed Oct 2, 2023
1 parent ad2a58f commit e0b8481
Showing 1 changed file with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Feature: moving/renaming file using file id
Given using spaces DAV path
And user "Alice" has been created with default attributes and without skeleton files


Scenario Outline: move a file into a folder inside personal space
Given user "Alice" has created folder "/folder"
And user "Alice" has uploaded file with content "some data" to "/textfile.txt"
Expand All @@ -15,7 +16,7 @@ Feature: moving/renaming file using file id
Then the HTTP status code should be "201"
And for user "Alice" the space "Personal" should contain these entries:
| folder/textfile.txt |
And for user "Alice" the space "Personal" should not contain these entries:
But for user "Alice" the space "Personal" should not contain these entries:
| textfile.txt |
Examples:
| dav-path |
Expand All @@ -32,7 +33,7 @@ Feature: moving/renaming file using file id
Then the HTTP status code should be "201"
And for user "Alice" the space "Personal" should contain these entries:
| folder/sub-folder/textfile.txt |
And for user "Alice" the space "Personal" should not contain these entries:
But for user "Alice" the space "Personal" should not contain these entries:
| textfile.txt |
Examples:
| dav-path |
Expand All @@ -48,7 +49,7 @@ Feature: moving/renaming file using file id
Then the HTTP status code should be "201"
And for user "Alice" the space "Personal" should contain these entries:
| textfile.txt |
And for user "Alice" the space "Personal" should not contain these entries:
But for user "Alice" the space "Personal" should not contain these entries:
| folder/textfile.txt |
Examples:
| dav-path |
Expand All @@ -65,7 +66,7 @@ Feature: moving/renaming file using file id
Then the HTTP status code should be "201"
And for user "Alice" the space "Personal" should contain these entries:
| textfile.txt |
And for user "Alice" the space "Personal" should not contain these entries:
But for user "Alice" the space "Personal" should not contain these entries:
| folder/sub-folder/textfile.txt |
Examples:
| dav-path |
Expand All @@ -80,7 +81,7 @@ Feature: moving/renaming file using file id
Then the HTTP status code should be "201"
And for user "Alice" the space "Personal" should contain these entries:
| renamed.txt |
And for user "Alice" the space "Personal" should not contain these entries:
But for user "Alice" the space "Personal" should not contain these entries:
| textfile.txt |
Examples:
| dav-path |
Expand All @@ -96,7 +97,7 @@ Feature: moving/renaming file using file id
Then the HTTP status code should be "201"
And for user "Alice" the space "Personal" should contain these entries:
| folder/renamed.txt |
And for user "Alice" the space "Personal" should not contain these entries:
But for user "Alice" the space "Personal" should not contain these entries:
| textfile.txt |
Examples:
| dav-path |
Expand All @@ -113,7 +114,7 @@ Feature: moving/renaming file using file id
Then the HTTP status code should be "201"
And for user "Alice" the space "Personal" should contain these entries:
| folder/sub-folder/renamed.txt |
And for user "Alice" the space "Personal" should not contain these entries:
But for user "Alice" the space "Personal" should not contain these entries:
| textfile.txt |
Examples:
| dav-path |
Expand All @@ -129,7 +130,7 @@ Feature: moving/renaming file using file id
Then the HTTP status code should be "201"
And for user "Alice" the space "Personal" should contain these entries:
| renamed.txt |
And for user "Alice" the space "Personal" should not contain these entries:
But for user "Alice" the space "Personal" should not contain these entries:
| folder/textfile.txt |
Examples:
| dav-path |
Expand All @@ -146,7 +147,7 @@ Feature: moving/renaming file using file id
Then the HTTP status code should be "201"
And for user "Alice" the space "Personal" should contain these entries:
| renamed.txt |
And for user "Alice" the space "Personal" should not contain these entries:
But for user "Alice" the space "Personal" should not contain these entries:
| folder/sub-folder/textfile.txt |
Examples:
| dav-path |
Expand Down

0 comments on commit e0b8481

Please sign in to comment.