()
| 1037 | |
| 1038 | #[test] |
| 1039 | fn test_set_permissions_not_found() { |
| 1040 | let wc = Memory::new(); |
| 1041 | let result = wc.set_permissions("nonexistent", 0o755); |
| 1042 | assert!(matches!(result, Err(MemoryError::NotFound { .. }))); |
| 1043 | } |
| 1044 | |
| 1045 | #[test] |
| 1046 | fn test_write_file() { |
nothing calls this directly
no test coverage detected