(path: &Path)
| 38 | } |
| 39 | |
| 40 | fn bytes(path: &Path) -> Vec<u8> { |
| 41 | std::fs::read(path).unwrap_or_else(|e| panic!("failed to read {}: {e}", path.display())) |
| 42 | } |
| 43 | |
| 44 | fn text(path: &Path) -> String { |
| 45 | std::fs::read_to_string(path) |
no test coverage detected