()
| 12 | |
| 13 | @pytest.fixture(autouse=True) |
| 14 | def _init_cache() -> Generator[Any, Any, None]: # pyright: ignore[reportUnusedFunction] |
| 15 | FastAPICache.init(InMemoryBackend()) |
| 16 | yield |
| 17 | FastAPICache.reset() |
| 18 | |
| 19 | |
| 20 | def test_datetime() -> None: |
nothing calls this directly
no test coverage detected