()
| 944 | |
| 945 | #[test] |
| 946 | fn test_remove_path_file() { |
| 947 | let wc = Memory::new(); |
| 948 | wc.add_file("test.txt", b""); |
| 949 | |
| 950 | wc.remove_path("test.txt", false).unwrap(); |
| 951 | assert!(!wc.exists("test.txt")); |
| 952 | } |
| 953 | |
| 954 | #[test] |
| 955 | fn test_remove_path_not_found() { |
nothing calls this directly
no test coverage detected