mirror of
https://gitlab.com/KKlochko/tui-rsync.git
synced 2026-08-20 05:37:43 +00:00
15 lines
352 B
Gherkin
15 lines
352 B
Gherkin
Feature: Creating the source
|
|
|
|
Scenario Outline: Adding an new unique source
|
|
Given the label "<label>"
|
|
And the path "<source_path>"
|
|
When I add the source
|
|
Then the source should be added successfully
|
|
|
|
Examples:
|
|
| label | source_path |
|
|
| usb | /mnt/usb |
|
|
| db | /db |
|
|
| temp | /tmp |
|
|
|