Update the test to verify creating the backup plan.

This commit is contained in:
2025-01-05 19:29:53 +02:00
parent 594d9dea3f
commit f3c600bb8f
2 changed files with 80 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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 |