From a6b4f305e948cdf327b45abe52b27a4d81013d5d Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 13 Feb 2017 21:55:47 +0100 Subject: Rename comparison tests to be about any operators --- testing/tests/operators.rs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 testing/tests/operators.rs (limited to 'testing/tests/operators.rs') diff --git a/testing/tests/operators.rs b/testing/tests/operators.rs new file mode 100644 index 0000000..0154118 --- /dev/null +++ b/testing/tests/operators.rs @@ -0,0 +1,19 @@ +extern crate askama; +#[macro_use] +extern crate askama_derive; + +use askama::Template; + +#[derive(Template)] +#[template(path = "operators.html")] +struct OperatorsTemplate { + a: usize, + b: usize, + c: usize, +} + +#[test] +fn test_operators() { + let t = OperatorsTemplate { a: 1, b: 1, c: 2 }; + assert_eq!(t.render(), "tf\ntf\ntf\ntf\ntf\ntf\n"); +} -- cgit