()
| 904 | |
| 905 | #[test] |
| 906 | fn test_sink_write_file() { |
| 907 | let sink = Sink::new(); |
| 908 | let mut writer = sink.write_file("/any/path", Inode::ROOT).unwrap(); |
| 909 | writer.write_all(b"test").unwrap(); |
| 910 | } |
| 911 | |
| 912 | #[test] |
| 913 | fn test_sink_error_display() { |
nothing calls this directly
no test coverage detected