(self)
| 19 | assert entry.created_at <= time.time() |
| 20 | |
| 21 | def test_is_expired_false(self) -> None: |
| 22 | entry = CacheEntry(response={"success": True}) |
| 23 | assert entry.is_expired(ttl_seconds=60.0) is False |
| 24 | |
| 25 | def test_is_expired_true(self) -> None: |
| 26 | # Create entry with old timestamp |
nothing calls this directly
no test coverage detected