mirror of
https://github.com/askama-rs/askama.git
synced 2025-10-01 15:00:57 +00:00
17 lines
277 B
Rust
17 lines
277 B
Rust
#[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");
|
|
}
|