We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51f20b4 commit bf6a1b1Copy full SHA for bf6a1b1
src/tools/linkchecker/tests/broken_intra_doc_link/foo.html
@@ -0,0 +1,5 @@
1
+<html>
2
+<body>
3
+[<code>std::ffi::CString</code>]
4
+</body>
5
+</html>
src/tools/linkchecker/tests/checks.rs
@@ -111,3 +111,11 @@ fn redirect_loop() {
111
which is also a redirect (not supported)",
112
);
113
}
114
+
115
+#[test]
116
+fn broken_intra_doc_link() {
117
+ broken_test(
118
+ "broken_intra_doc_link",
119
+ "foo.html:3: broken intra-doc link - [<code>std::ffi::CString</code>]",
120
+ );
121
+}
0 commit comments