runjucks_core 0.1.7

Pure Rust Nunjucks-compatible template engine core (Runjucks)
Documentation
1
2
3
4
5
6
7
use runjucks_core::RunjucksError;

#[test]
fn display_message() {
    let e = RunjucksError::new("bad thing");
    assert_eq!(e.to_string(), "bad thing");
}