(src: &Path, dst: &Path)
| 198 | } |
| 199 | let Some(target_doc) = routes.get(path).copied() else { |
| 200 | failures.push(format!( |
| 201 | "{} links to missing route {path}", |
| 202 | source.route_path |
| 203 | )); |
| 204 | return; |
| 205 | }; |
| 206 | if let Some(fragment) = fragment { |
| 207 | if !fragment.is_empty() |
| 208 | && !target_doc |
| 209 | .headings |
no test coverage detected