(tmp_path)
| 61 | |
| 62 | |
| 63 | def test_hash_file_deterministic(tmp_path): |
| 64 | f = tmp_path / "data.txt" |
| 65 | f.write_text("deterministic content") |
| 66 | assert HashRegistry.hash_file(f) == HashRegistry.hash_file(f) |
| 67 | |
| 68 | |
| 69 | def test_hash_file_different_content(tmp_path): |