4 releases

Uses old Rust 2015

0.15.2 Jul 29, 2019
0.15.1 Jan 20, 2019
0.15.0 Jul 6, 2018
0.14.0 Apr 22, 2018

#1508 in Development tools

Download history 3/week @ 2023-12-06 9/week @ 2023-12-13 6/week @ 2023-12-20 1/week @ 2024-01-03 11/week @ 2024-01-10 18/week @ 2024-01-17 1/week @ 2024-01-24 3/week @ 2024-01-31 2/week @ 2024-02-07 14/week @ 2024-02-14 26/week @ 2024-02-21 35/week @ 2024-02-28 20/week @ 2024-03-06 22/week @ 2024-03-13 17/week @ 2024-03-20

101 downloads per month
Used in 3 crates (2 directly)

MIT/Apache

42KB
876 lines

Be a Rust Documentation Skeptic

Unix build status crates.io Documentation

Test your Rust Markdown via Cargo.

Getting started

Put this in Cargo.toml to add the little-skeptic dependency:

[build-dependencies]
little-skeptic = "0.14"

[dev-dependencies]
little-skeptic = "0.14"

Also in Cargo.toml, to the [package] section add:

build = "build.rs"

That adds a build script through which you will tell Skeptic to build test cases from a set of Markdown files.

In build.rs write this to test all Rust code blocks in README.md:

extern crate little_skeptic;

fn main() {
    // generates doc tests for `README.md`.
    little_skeptic::generate_doc_tests(&["README.md"]);
}

If you want to test multiple markdown files, you just need to build a list of filenames and supply that to generate_doc_tests. To help you, the method markdown_files_of_directory will create such a list, enumerating the markdown files in the specified directory. You can add more files to this list as you like:

extern crate little_skeptic;

use little_skeptic::*;

fn main() {
    // Add all markdown files in directory "book/".
    let mut mdbook_files = markdown_files_of_directory("book/");
    // Also add "README.md" to the list of files.
    mdbook_files.push("README.md".into());
    generate_doc_tests(&mdbook_files);
}

Finally, in tests/skeptic.rs put the following macros to tie the generated test cases to cargo test:

include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs"));

Now any Rust code blocks in README.md will be tested during cargo test.

Users' Guide

Rust Skeptic is not based on rustdoc. It behaves similarly in many cases, but not all. Here's the lowdown on the Skeptic system.

Note: this README.md file itself is tested by Rust Skeptic. Because it is illustrating how to use markdown syntax, the markup on this document itself is funky, and so is the output below, particularly when illustrating Markdown's code fences (```rust).

You must ask for rust code blocks explicitly to get Rust testing, with ```rust. This is different from rustdoc, which assumes code blocks are Rust. The reason for this is that common Markdown parsers, like that used on GitHub, also do not assume Rust by default: you either get both Rust syntax highlighting and testing, or no Rust syntax highlighting and testing.

So the below is not tested by Skeptic.

```

let this_is_not_going_to_be_compiled_and_run = @all;
It doesn't really matter what's in here.

```

To indicate Rust code, code blocks are labeled rust:

```rust

println!("Calm your skepticism. This example is verified.");

```

Skeptic will interpret other words in the code block's 'info string' (which should be separated by comma, ,, to be GitHub-compatible). These words change how the test is interpreted: ignore, no_run, and should_panic.

ignore Info String

The ignore info string causes the test to be completely ignored. It will not be compiled or run during testing. This can be useful if an example is written in Rust (and you want it highlighted as such) but it is known to be incomplete (so it cannot compile as-is).

```rust,ignore

fn do_amazing_thing() -> i32 {
   // TODO: How do I do this?
   unimplemented! whatever I'm distracted, oh cookies!

```

no_run Info String

The no_run info string causes the example code not to be run during testing. Code marked with no_run will however still be compiled. This is useful for examples/test that may have side effects or dependencies which are not desirable in a testing situation.

```rust,no_run

fn do_amazing_thing() -> i32 {
   // TODO: How do I do this?
   unimplemented!()
}

do_amazing_thing();

```

should_panic Info String

should_panic causes the test to only pass if it terminates because of a panic!().

```rust,should_panic

assert!(1 == 100);

```

Skeptic Templates

Unlike rustdoc, Skeptic does not modify examples before testing by default. Skeptic examples are placed in a '.rs' file, compiled, then run.

This means that - by default - Skeptic examples require a main function, as in all the examples above. Implicit wrapping of examples in main, and custom injection of extern crate statements and crate attributes are controlled through templates.

Templates for a document are located in a separate file, that lives next to the document on the filesystem, and has the same full name as the document file, but with an additional ".skt.md" template.

So for example, this file, README.md, stores its templates in README.md.skt.md.

This scheme allows the markdown to be displayed naturally by stock Markdown renderers without displaying the template itself. The weird file extension is similarly so that the templates themselves are interpreted as valid markdown.

Consider this example:

let p = PathBuf::from("foo");
println!("{:?}", p);

This example won't compile without defining main and importing PathBuf, but the example itself does not contain that boilerplate. Instead it is annotated skt-foo, for skeptic template foo, like so:

```rust,skt-foo

let p = PathBuf::from("foo");
println!("{:?}", p);

```

This tells skeptic to look in the template file for another markdown block with the same skt-foo annotation, and compose them together using a Handlebars templates with escaping disabled. Here's what the template looks like (the test code is available as test):

```rust,skt-foo

use std::path::PathBuf;

{{test}}

```

If it is necessary to have module global definitions such as for #[macro_use] crates the skeptic-root-template specifier can be used.

```rust,skeptic-root-template

#[macro_use]
extern crate serde_json;

```

The old-style, document-global template

Within a document, a rust code block tagged skeptic-template will be used as the template for all examples in the doc that are not explicitly tagged.

```rust,skeptic-template

use std::path::PathBuf;

{{test}}

```

Rustdoc-style undisplayed lines with #

Like rustdoc, skeptic will remove preceding # from any lines of code before compiling them. Hiding such lines during display requires custom support in the markdown renderer.

License

MIT/Apache-2.0

Dependencies

~6.5MB
~125K SLoC