aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/operators.rs
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tests/operators.rs')
-rw-r--r--testing/tests/operators.rs17
1 files changed, 16 insertions, 1 deletions
diff --git a/testing/tests/operators.rs b/testing/tests/operators.rs
index 240fd52..d58492e 100644
--- a/testing/tests/operators.rs
+++ b/testing/tests/operators.rs
@@ -5,6 +5,21 @@ extern crate askama_derive;
use askama::Template;
#[derive(Template)]
+#[template(path = "compare.html")]
+struct CompareTemplate {
+ a: usize,
+ b: usize,
+ c: usize,
+}
+
+#[test]
+fn test_compare() {
+ let t = CompareTemplate { a: 1, b: 1, c: 2 };
+ assert_eq!(t.render(), "tf\ntf\ntf\ntf\ntf\ntf\n");
+}
+
+
+#[derive(Template)]
#[template(path = "operators.html")]
struct OperatorsTemplate {
a: usize,
@@ -15,5 +30,5 @@ struct OperatorsTemplate {
#[test]
fn test_operators() {
let t = OperatorsTemplate { a: 1, b: 1, c: 2 };
- assert_eq!(t.render(), "tf\ntf\ntf\ntf\ntf\ntf\nmul\ndiv\nmod\n");
+ assert_eq!(t.render(), "muldivmod");
}