19 releases (12 stable)

1.0.12 Apr 23, 2024
1.0.11 Mar 30, 2024
1.0.9 Jun 20, 2022
1.0.8 Jan 15, 2021
0.1.6 Nov 3, 2019

#14 in Procedural macros

Download history 690/week @ 2024-01-09 646/week @ 2024-01-16 576/week @ 2024-01-23 620/week @ 2024-01-30 706/week @ 2024-02-06 797/week @ 2024-02-13 721/week @ 2024-02-20 965/week @ 2024-02-27 782/week @ 2024-03-05 779/week @ 2024-03-12 1021/week @ 2024-03-19 1519/week @ 2024-03-26 2199/week @ 2024-04-02 1388/week @ 2024-04-09 898/week @ 2024-04-16 3938/week @ 2024-04-23

8,629 downloads per month
Used in 29 crates

MIT/Apache

44KB
1K SLoC

macrotest

Travis-CI Crates.io MSRV 1.56 docs.rs Crates.io Crates.io

Similar to trybuild, but allows you to test how declarative or procedural macros are expanded.

Minimal Supported Rust Version: 1.56


Documentation

Please refer to the documentation.

Example

Install cargo expand.

Add to your crate's Cargo.toml:

[dev-dependencies]
macrotest = "1"

Under your crate's tests/ directory, create tests.rs file containing the following code:

#[test]
pub fn pass() {
    macrotest::expand("tests/expand/*.rs");
}

Populate the tests/expand/ directory with rust source files. Each source file is a macro expansion test case.

See test-project and test-procmacro-project for the reference.

Dependencies

~1–1.8MB
~41K SLoC