()
| 933 | |
| 934 | #[test] |
| 935 | fn test_create_dir_all() { |
| 936 | let wc = Memory::new(); |
| 937 | wc.create_dir_all("a/b/c/d").unwrap(); |
| 938 | |
| 939 | assert!(wc.is_directory("a")); |
| 940 | assert!(wc.is_directory("a/b")); |
| 941 | assert!(wc.is_directory("a/b/c")); |
| 942 | assert!(wc.is_directory("a/b/c/d")); |
| 943 | } |
| 944 | |
| 945 | #[test] |
| 946 | fn test_remove_path_file() { |
nothing calls this directly
no test coverage detected