()
| 622 | |
| 623 | #[tokio::test] |
| 624 | async fn test_create_new() { |
| 625 | let fs = Fs::new(); |
| 626 | fs.create_new("my_file.txt").await.unwrap(); |
| 627 | assert!(fs.create_new("my_file.txt").await.is_err()); |
| 628 | } |
| 629 | } |
nothing calls this directly
no test coverage detected