Update the tests names.

dev
KKlochko 3 months ago
parent 1ec7c6464a
commit e0f8ec9db5

@ -16,7 +16,7 @@ Feature: Creating a backup plan with the CLI
@fixture.injector
@fixture.in_memory_database
@fixture.cli
Scenario Outline: Response of create an new unique backup plan with the CLI
Scenario Outline: Response of creating an new unique backup plan with the CLI
Given the CLI arguments are "<arguments>"
When I run the CLI
Then the CLI executed with "<result>"

@ -18,7 +18,7 @@ Feature: Deleting a backup plan with the CLI
@fixture.injector
@fixture.in_memory_database
@fixture.cli
Scenario Outline: Delete non-existing backup plan with the CLI
Scenario Outline: Response of deleting non-existing backup plan with the CLI
Given the CLI arguments are "<arguments>"
When I run the CLI
Then the CLI executed with "<result>"
@ -31,7 +31,7 @@ Feature: Deleting a backup plan with the CLI
@fixture.injector
@fixture.in_memory_database
@fixture.cli
Scenario Outline: Delete no backup plans with the CLI
Scenario Outline: Response of deleting no backup plans with the CLI
Given the CLI arguments are "<arguments>"
When I run the CLI
Then the CLI executed with "<result>"
@ -45,7 +45,7 @@ Feature: Deleting a backup plan with the CLI
@fixture.in_memory_database
@fixture.seeds
@fixture.cli
Scenario Outline: Delete all backup plans with the CLI
Scenario Outline: Response of deleting all backup plans with the CLI
Given the CLI arguments are "<arguments>"
When I run the CLI
Then the CLI executed with "<result>"

@ -18,7 +18,7 @@ Feature: Show a backup plan with the CLI
@fixture.injector
@fixture.in_memory_database
@fixture.cli
Scenario Outline: Show non-existing backup plans with the CLI
Scenario Outline: Response of showing non-existing backup plans with the CLI
Given the CLI arguments are "<arguments>"
When I run the CLI
Then the CLI executed with "<result>"
@ -31,7 +31,7 @@ Feature: Show a backup plan with the CLI
@fixture.injector
@fixture.in_memory_database
@fixture.cli
Scenario Outline: Show no backup plans with the CLI
Scenario Outline: Response of showing no backup plans with the CLI
Given the CLI arguments are "<arguments>"
When I run the CLI
Then the CLI executed with "<result>"
@ -45,7 +45,7 @@ Feature: Show a backup plan with the CLI
@fixture.in_memory_database
@fixture.seeds
@fixture.cli
Scenario Outline: Show backup plans with the CLI
Scenario Outline: Response of showing backup plans with the CLI
Given the CLI arguments are "<arguments>"
And I have a backup plan with id="8aa59e7e-dc75-459b-beb5-b710b39be583"
When I run the CLI

@ -18,7 +18,7 @@ Feature: Update a backup plan with the CLI
@fixture.injector
@fixture.in_memory_database
@fixture.cli
Scenario Outline: Response of replace non-existing backup plans with the CLI
Scenario Outline: Response of replacing non-existing backup plans with the CLI
Given the CLI arguments are "<arguments>"
When I run the CLI
Then the CLI executed with "<result>"
@ -32,7 +32,7 @@ Feature: Update a backup plan with the CLI
@fixture.in_memory_database
@fixture.seeds
@fixture.cli
Scenario Outline: Response of replace an existing backup plans with the CLI
Scenario Outline: Response of replacing an existing backup plans with the CLI
Given the CLI arguments are "<arguments>"
And I have a backup plan with id="<existing_backup_plan_id>"
When I run the CLI

@ -3,7 +3,7 @@ Feature: Read a backup plan by an id
@fixture.injector
@fixture.in_memory_database
@fixture.seeds
Scenario Outline: Deleting a backup plan with the CLI
Scenario Outline: Read a backup plan with the CLI
Given I have a backup plan with id="<existing_backup_plan_id>"
When I read the backup plan with id="<backup_plan_id>"
Then the result should be "<result>"

Loading…
Cancel
Save