about summary refs log tree commit diff
path: root/src/doc/rustdoc.md
AgeCommit message (Collapse)AuthorLines
2014-02-20move extra::test to libtestLiigo Zhuang-1/+1
2014-02-15auto merge of #12298 : alexcrichton/rust/rustdoc-testing, r=sfacklerbors-20/+12
It's too easy to forget the `rust` tag to test something. Closes #11698
2014-02-14Update rustdoc testing to test all code blocksAlex Crichton-20/+12
It's too easy to forget the `rust` tag to have a code example tested, and it's far more common to have testable code than untestable code. This alters rustdoc to have only two directives, `ignore` and `should_fail`. The `ignore` directive ignores the code block entirely, and the `should_fail` directive has been fixed to only fail the test if the code execution fails, not also compilation.
2014-02-14extern mod => extern crateAlex Crichton-2/+2
This was previously implemented, and it just needed a snapshot to go through
2014-02-02Move doc/ to src/doc/Alex Crichton-0/+182
We generate documentation into the doc/ directory, so we shouldn't be intermingling source files with generated files