()
| 349 | |
| 350 | #[test] |
| 351 | fn test_file_writer_inode() { |
| 352 | let (_dir, fs) = temp_fs(); |
| 353 | let writer = fs.write_file("test.txt", Inode::new(42)).unwrap(); |
| 354 | assert_eq!(writer.inode(), Inode::new(42)); |
| 355 | } |
| 356 | |
| 357 | #[test] |
| 358 | fn test_file_writer_path() { |
nothing calls this directly
no test coverage detected