(path: &str, suffixes: &[&str])
| 1804 | } |
| 1805 | |
| 1806 | fn ends_with_any(path: &str, suffixes: &[&str]) -> bool { |
| 1807 | suffixes.iter().any(|suffix| path.ends_with(suffix)) |
| 1808 | } |
| 1809 | |
| 1810 | fn is_excluded_file(path: &str) -> bool { |
| 1811 | EXCLUDED_FILES |
no test coverage detected