(test_name: &str)
| 641 | } |
| 642 | |
| 643 | fn cleanup(test_name: &str) { |
| 644 | let path = PathBuf::from("/tmp").join(format!("enowx-test-{}", test_name)); |
| 645 | if path.exists() { |
| 646 | std::fs::remove_dir_all(&path).ok(); |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | // ── Path Traversal ───────────────────────────────────────────────────────── |
| 651 |
no outgoing calls