[][src]Macro rune_testing::assert_parse

macro_rules! assert_parse {
    ($source:expr) => { ... };
}

Assert that the given rune program parses.

Examples

use rune_testing::*;

assert_parse!(r#"fn main() { (0 < 10) >= 10 }"#);