()
| 352 | let mut failures = Vec::new(); |
| 353 | |
| 354 | for doc in docs() |
| 355 | .iter() |
| 356 | .filter(|doc| doc.collection == "docs") |
| 357 | .filter(|doc| doc.slug.starts_with("scripting/contexts/")) |
| 358 | { |
| 359 | for heading in api_ref_headings(&doc.markdown) { |
| 360 | if !source_names.contains(&heading) { |
| 361 | failures.push(format!("{} has no source API `{heading}`", doc.slug)); |
nothing calls this directly
no test coverage detected