aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testing/tests/inheritance.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/tests/inheritance.rs b/testing/tests/inheritance.rs
index 35fee80..32028c4 100644
--- a/testing/tests/inheritance.rs
+++ b/testing/tests/inheritance.rs
@@ -29,6 +29,18 @@ fn test_simple_extends() {
);
}
+#[derive(Template)]
+#[template(source = "{% extends \"base.html\" %}", ext = "html")]
+struct EmptyChild<'a> {
+ title: &'a str,
+}
+
+#[test]
+fn test_empty_child() {
+ let t = EmptyChild { title: "baz" };
+ assert_eq!(t.render().unwrap(), "baz\n\nFoo\nCopyright 2017");
+}
+
pub mod parent {
use askama::Template;
#[derive(Template)]