* test: localize calendar recurrence helper import * test: share calendar route import helper
8 lines
212 B
Python
8 lines
212 B
Python
"""Shared imports for calendar route tests."""
|
|
|
|
|
|
def import_calendar_routes():
|
|
"""Import the calendar routes module after test stubs are installed."""
|
|
import routes.calendar_routes as cal
|
|
|
|
return cal
|