mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 08:09:37 +00:00
8 lines
308 B
Python
8 lines
308 B
Python
def test_update_recurring_dates(client, seeder, app):
|
|
user_id, admin_unit_id = seeder.setup_base()
|
|
seeder.create_event(admin_unit_id, "RRULE:FREQ=DAILY;COUNT=7")
|
|
|
|
runner = app.test_cli_runner()
|
|
result = runner.invoke(args=["event", "update-recurring-dates"])
|
|
assert result.exit_code == 0
|