(p: &Path, b: &[u8])
| 495 | use tempfile::tempdir; |
| 496 | |
| 497 | fn write(p: &Path, b: &[u8]) { |
| 498 | fs::create_dir_all(p.parent().unwrap()).unwrap(); |
| 499 | fs::write(p, b).unwrap(); |
| 500 | } |
| 501 | |
| 502 | #[test] |
| 503 | fn init_is_idempotent() { |
no outgoing calls
searching dependent graphs…