9 lines
178 B
Python
9 lines
178 B
Python
"""All unit tests (lightweight tests)."""
|
|
|
|
from typing import Any
|
|
|
|
|
|
def assert_all_importable(module: Any) -> None:
|
|
for attr in module.__all__:
|
|
getattr(module, attr)
|