(self)
| 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 |
| 27 | entry = CacheEntry(response={"success": True}, created_at=time.time() - 120) |
| 28 | assert entry.is_expired(ttl_seconds=60.0) is True |
| 29 | |
| 30 | |
| 31 | class TestRequestCache: |
nothing calls this directly
no test coverage detected