()
| 960 | |
| 961 | #[test] |
| 962 | fn test_remove_path_empty_directory() { |
| 963 | let wc = Memory::new(); |
| 964 | wc.add_directory("empty"); |
| 965 | |
| 966 | wc.remove_path("empty", false).unwrap(); |
| 967 | assert!(!wc.exists("empty")); |
| 968 | } |
| 969 | |
| 970 | #[test] |
| 971 | fn test_remove_path_non_empty_directory_error() { |
nothing calls this directly
no test coverage detected