()
| 1017 | |
| 1018 | #[test] |
| 1019 | fn test_body_match_fraction() { |
| 1020 | let terms = search_terms("cargo clippy"); |
| 1021 | let body = "Workflow tip: cargo test is faster; run cargo clippy before pushing."; |
| 1022 | assert_eq!(body_match_fraction(&terms, body), 1.0); |
| 1023 | let half = search_terms("cargo missing"); |
| 1024 | assert_eq!(body_match_fraction(&half, body), 0.5); |
| 1025 | assert_eq!(body_match_fraction(&[], body), 0.0); |
| 1026 | } |
| 1027 | |
| 1028 | #[test] |
| 1029 | fn test_body_match_fraction_case_insensitive() { |
nothing calls this directly
no test coverage detected