doubter

crates.io Docs.rs Build Status

A helper crate for testing Rust code blocks in Markdown.

Status

Experimental (see also the roadmap issue)

Usage

At first, create a new crate for testing Markdown files. This crate must be separated from all published crates.

Next, add the dependencies for doubter to Cargo.toml. If some external crates are used in some code blocks, specify it as [dev-dependencies]:

```toml [dependencies] doubter = "0.0.6"

[dev-dependencies]

put here additional dependencies used in code blocks.

rand = "*"

...

```

Finally modify src/lib.rs to specify the path to target Markdown files. All paths specified here must be the relative path from Cargo's manifest directory.

```rust

[macro_use]

extern crate doubter;

doubter! { include = "README.md", include = "docs/*/.md", } ```

The macro doubter!() takes a comma-separated list of fields. The following field keys are currently supported:

Implementation Details

This crate emulates the behavior of unstable feature #[doc(include = "...")] by using the procedural macros, and runs code blocks by embedding the the Markdown files in Rust source code.

For example, the macro call

rust doubter! { include = "README.md", }

is roughly expanded to the following code:

rust pub mod doctests { pub mod readme_md { // ... // The content of README.md converted to doc comment // ... } }

Alternatives

License

MIT license