(mod: str)
| 23 | |
| 24 | |
| 25 | def _have(mod: str) -> bool: |
| 26 | try: |
| 27 | importlib.import_module(mod) |
| 28 | return True |
| 29 | except ImportError: |
| 30 | return False |
| 31 | |
| 32 | |
| 33 | def test_int_round_trip_no_leak(example_lib): |
nothing calls this directly
no outgoing calls
no test coverage detected