()
| 953 | |
| 954 | #[test] |
| 955 | fn test_remove_path_not_found() { |
| 956 | let wc = Memory::new(); |
| 957 | let result = wc.remove_path("nonexistent", false); |
| 958 | assert!(matches!(result, Err(MemoryError::NotFound { .. }))); |
| 959 | } |
| 960 | |
| 961 | #[test] |
| 962 | fn test_remove_path_empty_directory() { |
nothing calls this directly
no test coverage detected