mirror of
https://gitlab.com/KKlochko/tui-rsync.git
synced 2026-08-20 05:37:43 +00:00
16 lines
456 B
Gherkin
16 lines
456 B
Gherkin
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 |
|
|
|