aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/simple.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testing/tests/simple.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs
index 63203e7..2aa93ea 100644
--- a/testing/tests/simple.rs
+++ b/testing/tests/simple.rs
@@ -79,3 +79,14 @@ fn test_for() {
};
assert_eq!(s.render(), "\n A\n\n alfa\n\n 1\n\n");
}
+
+
+#[derive(Template)]
+#[template(path = "literals.html")]
+struct LiteralsTemplate {}
+
+#[test]
+fn test_literals() {
+ let s = LiteralsTemplate {};
+ assert_eq!(s.render(), "a\n");
+}