about summary refs log tree commit diff
path: root/src/test/run-make/rustdoc-where/foo.rs
AgeCommit message (Collapse)AuthorLines
2015-04-07test: Move all run-make rustdoc tests to test/rustdocAlex Crichton-42/+0
2015-02-18Fallout: tests. As tests frequently elide things, lots of changesNiko Matsakis-6/+9
here. Some of this may have been poorly rebased, though I tried to be careful and preserve the spirit of the test.
2015-02-05rustdoc: Clean up some htmldocck testsTom Jakubowski-12/+13
Fix #21740
2015-01-18tests: Tidy and allows multi-line htmldocck commands.Kang Seonghoon-4/+8
2015-01-18tests: Add htmldocck.py script for the use of Rustdoc tests.Kang Seonghoon-0/+8
The script is intended as a tool for doing every sort of verifications amenable to Rustdoc's HTML output. For example, link checkers would go to this script. It already parses HTML into a document tree form (with a slight caveat), so future tests can make use of it. As an example, relevant `rustdoc-*` run-make tests have been updated to use `htmldocck.py` and got their `verify.sh` removed. In the future they may go to a dedicated directory with htmldocck running by default. The detailed explanation of test scripts is provided as a docstring of htmldocck. cc #19723
2014-09-29rustdoc: Render where clauses as appropriateTom Jakubowski-0/+26
Fix #16546