()
| 30 | |
| 31 | #[test] |
| 32 | fn test_create_profile_folder() -> Result<()> { |
| 33 | let folder_path = create_profile_folder()?; |
| 34 | assert!(folder_path.exists()); |
| 35 | assert!(folder_path.is_dir()); |
| 36 | Ok(()) |
| 37 | } |
| 38 | } |
nothing calls this directly
no test coverage detected