Test that ``TYPES.keys()`` and ``numpy.typing.__all__`` are synced.
()
| 79 | |
| 80 | |
| 81 | def test_keys() -> None: |
| 82 | """Test that ``TYPES.keys()`` and ``numpy.typing.__all__`` are synced.""" |
| 83 | keys = TYPES.keys() |
| 84 | ref = set(npt.__all__) |
| 85 | assert keys == ref |
| 86 | |
| 87 | |
| 88 | PROTOCOLS: dict[str, tuple[type[Any], object]] = { |
nothing calls this directly
no test coverage detected
searching dependent graphs…