blob: ebcca700fd6b049e0b67aeb12b85f5c17badef1f (
plain) (
tree)
|
|
extern crate askama;
#[macro_use]
extern crate askama_derive;
use askama::Template;
#[derive(Template)]
#[template(path = "base.html")]
struct BaseTemplate { }
#[derive(Template)]
#[template(path = "child.html")]
struct ChildTemplate { }
#[test]
fn test_simple_extends() {
let t = ChildTemplate { };
assert_eq!(t.render(), "Content goes here\nCopyright 2017\n");
}
|