MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / test_body_match_fraction

Function test_body_match_fraction

atomic-cli/src/commands/vault/context.rs:1147–1154  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1145
1146 #[test]
1147 fn test_body_match_fraction() {
1148 let terms = search_terms("cargo clippy");
1149 let body = "Workflow tip: cargo test is faster; run cargo clippy before pushing.";
1150 assert_eq!(body_match_fraction(&terms, body), 1.0);
1151 let half = search_terms("cargo missing");
1152 assert_eq!(body_match_fraction(&half, body), 0.5);
1153 assert_eq!(body_match_fraction(&[], body), 0.0);
1154 }
1155
1156 #[test]
1157 fn test_body_match_fraction_case_insensitive() {

Callers

nothing calls this directly

Calls 1

search_termsFunction · 0.85

Tested by

no test coverage detected