mirror of
https://gitlab.com/KKlochko/tui-rsync.git
synced 2026-08-20 05:37:43 +00:00
17 lines
643 B
Gherkin
17 lines
643 B
Gherkin
Feature: Creating the source
|
|
|
|
Scenario Outline: Create an new unique backup plan
|
|
Given the label "<label>"
|
|
And the path "<source_path>"
|
|
And the destinations <destinations>
|
|
And the arguments "<arguments>"
|
|
When I create the backup plan
|
|
Then it should be created successfully
|
|
|
|
Examples:
|
|
| label | source_path | destinations | arguments |
|
|
| usb | /mnt/usb | [] | <empty> |
|
|
| db | /db | ["/backup/db"] | -avuP |
|
|
| temp | /tmp | ["/backup/tmp1", "/backup/tmp2"] | -avuP --delete |
|
|
|