()
| 485 | |
| 486 | #[test] |
| 487 | fn test_remove_not_found() { |
| 488 | let (_dir, fs) = temp_fs(); |
| 489 | let result = fs.remove_path("nonexistent", false); |
| 490 | assert!(result.is_err()); |
| 491 | } |
| 492 | |
| 493 | // ------------------------------------------------------------------------ |
| 494 | // Rename Operations |
nothing calls this directly
no test coverage detected