From 549d0ec3c6799eb31517b093faa7c85752ba7d8c Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Fri, 4 Aug 2017 13:19:31 +0200 Subject: Add test for include blocks (see #25) --- testing/templates/include.html | 3 +++ testing/templates/included.html | 1 + testing/tests/include.rs | 19 +++++++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 testing/templates/include.html create mode 100644 testing/templates/included.html create mode 100644 testing/tests/include.rs (limited to 'testing') diff --git a/testing/templates/include.html b/testing/templates/include.html new file mode 100644 index 0000000..cdafbad --- /dev/null +++ b/testing/templates/include.html @@ -0,0 +1,3 @@ +{% for s in strs -%} + {% include "included.html" %} +{%- endfor %} diff --git a/testing/templates/included.html b/testing/templates/included.html new file mode 100644 index 0000000..ff10488 --- /dev/null +++ b/testing/templates/included.html @@ -0,0 +1 @@ +INCLUDED: {{ s }} diff --git a/testing/tests/include.rs b/testing/tests/include.rs new file mode 100644 index 0000000..7ddccd2 --- /dev/null +++ b/testing/tests/include.rs @@ -0,0 +1,19 @@ +#[macro_use] +extern crate askama; + +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(), "INCLUDED: fooINCLUDED: bar") +} -- cgit