aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/operators.rs
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-02-17 14:59:04 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-02-17 14:59:04 +0100
commitb84a1242c449efaf23c50d7389e9c5cc3b8e9ded (patch)
tree3e854bf0acacae4ec3ffcdd8243bbdf9f800fc4f /testing/tests/operators.rs
parent3003e5865801d912c075fc0c04412a8a65956d96 (diff)
downloadaskama-b84a1242c449efaf23c50d7389e9c5cc3b8e9ded.tar.gz
askama-b84a1242c449efaf23c50d7389e9c5cc3b8e9ded.tar.bz2
askama-b84a1242c449efaf23c50d7389e9c5cc3b8e9ded.zip
Add tests for more binary operators
Diffstat (limited to 'testing/tests/operators.rs')
-rw-r--r--testing/tests/operators.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tests/operators.rs b/testing/tests/operators.rs
index d58492e..73745f0 100644
--- a/testing/tests/operators.rs
+++ b/testing/tests/operators.rs
@@ -30,5 +30,5 @@ struct OperatorsTemplate {
#[test]
fn test_operators() {
let t = OperatorsTemplate { a: 1, b: 1, c: 2 };
- assert_eq!(t.render(), "muldivmod");
+ assert_eq!(t.render(), "muldivmodaddrshlshbandbxorborandor");
}