mirror of
https://gitlab.com/KKlochko/tui-rsync.git
synced 2026-08-20 05:37:43 +00:00
8 lines
236 B
Python
8 lines
236 B
Python
from behave import given
|
|
|
|
|
|
@given('I have a backup plan with id="{existing_backup_plan_id}"')
|
|
def given_existing_backup_plan_id_seed(context, existing_backup_plan_id):
|
|
context.data_seeds.create_backup_plan(existing_backup_plan_id)
|
|
|