()
| 356 | |
| 357 | #[test] |
| 358 | fn test_file_writer_path() { |
| 359 | let (dir, fs) = temp_fs(); |
| 360 | let writer = fs.write_file("test.txt", Inode::new(1)).unwrap(); |
| 361 | assert_eq!(writer.path(), dir.path().join("test.txt")); |
| 362 | } |
| 363 | |
| 364 | #[test] |
| 365 | fn test_file_writer_finish() { |
nothing calls this directly
no test coverage detected