aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testing/templates/json.html1
-rw-r--r--testing/tests/simple.rs14
2 files changed, 15 insertions, 0 deletions
diff --git a/testing/templates/json.html b/testing/templates/json.html
new file mode 100644
index 0000000..e711c10
--- /dev/null
+++ b/testing/templates/json.html
@@ -0,0 +1 @@
+{"foo": "{{ foo }}", "bar": "{{ bar }}"}
diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs
index a04b3fa..6d8afa3 100644
--- a/testing/tests/simple.rs
+++ b/testing/tests/simple.rs
@@ -121,3 +121,17 @@ fn test_generics() {
let t = GenericsTemplate { t: "a", u: 42 };
assert_eq!(t.render(), "a42");
}
+
+
+#[derive(Template)]
+#[template(path = "json.html")]
+struct JsonTemplate<'a> {
+ foo: &'a str,
+ bar: &'a str,
+}
+
+#[test]
+fn test_json() {
+ let t = JsonTemplate { foo: "a", bar: "b" };
+ assert_eq!(t.render(), "{\"foo\": \"a\", \"bar\": \"b\"}");
+}