aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/include.rs
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tests/include.rs')
-rw-r--r--testing/tests/include.rs19
1 files changed, 19 insertions, 0 deletions
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")
+}