You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 17, 2023. It is now read-only.
Given the "./Test.txt" file already exists
When I fill the "./Test.txt" file with the following lines:
|Line|
|Test1|
And I create the "./Test.txt" file
Then I should see the "./Test.txt" file content is:
|Line|
|Test1|
When I create the "./Test.txt" file with overwriting
Then I should see the "./Test.txt" file size is 0 bytes
Scenario: Copy file
Copy file
Scenario: Move file
Move file
Scenario: Delete file
Delete file
Given the "./Test.txt" file already exists
When I delete the "./Test.txt" file
Then I should see the "./Test.txt" file is missing
When I delete the "./Test.txt" file
Then I should see the "./Test.txt" file is missing
Base file operations include the following actions:
Scenario Outline: Create file
Given the "" file doesn't exist
And the "" folder doesn't exist
When I create the "" file
Then I should see the "" file is
Examples:
| File Name | Folder | Availability |
| ./Test.txt | nop |available |
| ./T e s t.txt | nop |available |
| ./Test1/Test.txt | ./Test1 | available |
| ./T@#%^^.. | nop | missing |
| a:\Test.txt | nop | missing |
Scenario: Create file (overwrite)
Given the "./Test.txt" file already exists
When I fill the "./Test.txt" file with the following lines:
|Line|
|Test1|
And I create the "./Test.txt" file
Then I should see the "./Test.txt" file content is:
|Line|
|Test1|
When I create the "./Test.txt" file with overwriting
Then I should see the "./Test.txt" file size is 0 bytes
Scenario: Copy file
Scenario: Move file
Scenario: Delete file
Given the "./Test.txt" file already exists
When I delete the "./Test.txt" file
Then I should see the "./Test.txt" file is missing
When I delete the "./Test.txt" file
Then I should see the "./Test.txt" file is missing