(isbn_or_asin: dict[str, Any], expected_key: str)
| 170 | ], |
| 171 | ) |
| 172 | def test_make_cache_key(isbn_or_asin: dict[str, Any], expected_key: str) -> None: |
| 173 | got = make_cache_key(isbn_or_asin) |
| 174 | assert got == expected_key |
| 175 | |
| 176 | |
| 177 | # Sample Google Book data with all fields present |
nothing calls this directly
no test coverage detected