Create a TaskManager with default tasks
()
| 364 | # Module-level fixture to avoid re-creating TaskManager for each test |
| 365 | @pytest.fixture(scope="module") |
| 366 | def shared_task_manager(): |
| 367 | """Create a TaskManager with default tasks""" |
| 368 | return TaskManager() |
| 369 | |
| 370 | |
| 371 | @pytest.fixture(scope="module") |
nothing calls this directly
no test coverage detected