aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/include.rs
blob: f461a7b420877a323d13842d8f577c7591cdc8b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use askama::Template;

#[derive(Template)]
#[template(path = "include.html")]
struct IncludeTemplate<'a> {
    strs: &'a [&'a str],
}

#[test]
fn test_include() {
    let strs = vec!["foo", "bar"];
    let s = IncludeTemplate { strs: &strs };
    assert_eq!(s.render().unwrap(), "\n  INCLUDED: foo\n  INCLUDED: bar")
}