Test cache miss returns None.
(self, temp_cache)
| 58 | assert len(cached.findings) == 1 |
| 59 | |
| 60 | def test_cache_miss(self, temp_cache): |
| 61 | """Test cache miss returns None.""" |
| 62 | cached = temp_cache.get("nonexistent.com", ["osint"]) |
| 63 | assert cached is None |
| 64 | |
| 65 | def test_checksum_computation(self): |
| 66 | """Test checksum computation is consistent.""" |