()
| 7664 | |
| 7665 | #[test] |
| 7666 | fn explicit_missing_input_is_an_error() { |
| 7667 | let input = |
| 7668 | std::env::temp_dir().join(format!("fastled_lint_missing_input_{}", std::process::id())); |
| 7669 | let error = collect_input_files(Path::new("."), &[path_to_string(&input)]) |
| 7670 | .unwrap_err() |
| 7671 | .to_string(); |
| 7672 | assert!(error.contains("input path not found")); |
| 7673 | } |
| 7674 | |
| 7675 | #[test] |
| 7676 | fn unmatched_input_pattern_is_an_error() { |
nothing calls this directly
no test coverage detected