aboutsummaryrefslogblamecommitdiffstats
path: root/testing/tests/macro.rs
blob: 25d95d8d8fc1cb9c7a7fe1c3c9d2d09631752468 (plain) (tree)
1
2
3
4
5
6
7





                     
                                








                                                   











                                                   
#[macro_use]
extern crate askama;

use askama::Template;

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

#[test]
fn test_macro() {
    let t = MacroTemplate { s: "foo" };
    assert_eq!(t.render().unwrap(), "foo foo foo");
}

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

#[test]
fn test_import() {
    let t = ImportTemplate { s: "foo" };
    assert_eq!(t.render().unwrap(), "foo foo foo");
}