Update the test for the creating source feature to add arguments.

This commit is contained in:
2023-11-09 22:06:17 +02:00
parent befdc9ea93
commit d3bc4bd5a2
2 changed files with 14 additions and 5 deletions
+5 -4
View File
@@ -3,12 +3,13 @@ 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 |
| usb | /mnt/usb |
| db | /db |
| temp | /tmp |
| label | source_path | arguments |
| usb | /mnt/usb | <empty> |
| db | /db | -avuP |
| temp | /tmp | -avuP --delete |