about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-61592.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-15/+0
2022-08-13rustdoc: Fix incorrect usage of `@!has` and `@!matches`Noah Lev-2/+2
`@!has` (and `@!matches`) with two arguments used to treat the second argument as a literal string of HTML code. Now, that feature has been renamed into `@!hasraw` (and `@!matchesraw`), and the arity-2 `@!has` version is an error. These uses thought the second argument was being treated as an XPath, as with the arity-3 version, but in fact was being treated as literal HTML. Because these were checking for the *absence* of the string, the tests silently did nothing -- an XPath string won't ever be showing up in the test's generated HTML!
2022-08-13Update `@!has` name in testsNoah Lev-2/+2
2020-12-31Rustdoc render public underscore_imports as Re-exportsbors-0/+15
Fixes #61592