()
| 1335 | |
| 1336 | #[test] |
| 1337 | fn test_walk_files_nonexistent_prefix() { |
| 1338 | let wc = Memory::new(); |
| 1339 | wc.add_file("file.txt", b""); |
| 1340 | |
| 1341 | let files = wc.walk_files("nonexistent").unwrap(); |
| 1342 | |
| 1343 | assert!(files.is_empty()); |
| 1344 | } |
| 1345 | } |
nothing calls this directly
no test coverage detected