()
| 16 | |
| 17 | #[test] |
| 18 | fn test_file_path_to_vec_string() { |
| 19 | let path = std::path::Path::new("/home/user/path/to/file.rs"); |
| 20 | let result = file_path_to_vec_string(path); |
| 21 | assert_eq!(result, vec!["", "Home", "User", "Path", "To", "File"]); |
| 22 | } |
nothing calls this directly
no test coverage detected