(mod: Module)
| 47 | |
| 48 | @pytest.fixture |
| 49 | async def duck(mod: Module): |
| 50 | r, t = await mod.get_structured_result( |
| 51 | "Pond", |
| 52 | {"duck": "123456"}, |
| 53 | "duck", |
| 54 | {}, |
| 55 | ) |
| 56 | return r, t |
| 57 | |
| 58 | |
| 59 | def test_registered_functions(mod: Module): |
nothing calls this directly
no test coverage detected