(path: &Path, expected: &str, field: &str)
| 5748 | } |
| 5749 | |
| 5750 | fn verify_file_sha256(path: &Path, expected: &str, field: &str) -> Result<()> { |
| 5751 | ensure_file(path)?; |
| 5752 | let actual = sha256_file(path)?; |
| 5753 | ensure_eq(&actual, expected, field) |
| 5754 | } |
| 5755 | |
| 5756 | fn archive_entry_bytes(archive_path: &Path, entry_name: &str) -> Result<Vec<u8>> { |
| 5757 | let file = |
no test coverage detected