about summary refs log tree commit diff
path: root/src/test/rustdoc/hidden-methods.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2018-10-10Use XPATH notation to match against flattened nodesPhilip Munksgaard-2/+2
The generated code would look like `<code>impl <a href="...">Foo</a></code>` which the plain text matcher doesn't match. But by using the XPATH notation, the nodes are flattened and we can correctly assert that `impl Foo` does not occur in the generated docs.
2016-06-27rustdoc: Fix a few stripping issuesOliver Middleton-0/+39
We need to recurse into stripped modules to strip things like impl methods but when doing so we must not add any items to the `retained` set.