liquid 0.21.1

The liquid templating language for Rust
Documentation
1
2
3
4
5
6
7
8
9
#[test]
fn test_unexpected_outer_tag() {
    assert_parse_error!(r#"{% else %}"#);
}

#[test]
fn test_unknown_tag() {
    assert_parse_error!(r#"{% foo %}"#);
}