mirror of https://gitlab.com/KKlochko/tui-rsync
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
456 B
16 lines
456 B
Feature: Creating the source
|
|
|
|
Scenario Outline: Adding an new unique source
|
|
Given the label "<label>"
|
|
And the path "<source_path>"
|
|
And the arguments "<arguments>"
|
|
When I add the source
|
|
Then the source should be added successfully
|
|
|
|
Examples:
|
|
| label | source_path | arguments |
|
|
| usb | /mnt/usb | <empty> |
|
|
| db | /db | -avuP |
|
|
| temp | /tmp | -avuP --delete |
|
|
|