Skip to content

Commit ca7aff7

Browse files
committed
Add binary operator ensure tests
Currently failing: error: unexpected token: `b` --> tests/test_ensure.rs:138:44 | 138 | let test = || Ok(ensure!(a <= b || a - b <= 10)); | ^ | ::: src/ensure.rs:319:117 | 319 | (atom $stack:tt $bail:tt (~$($fuel:tt)*) {($($buf:tt)*) $($parse:tt)*} ($dot:tt $ident:tt $colons:tt $larrow:tt $lit:literal $($dup:tt)*) . $i:ident :: <- $($rest:tt)*) => { | ------------ while parsing argument for this `literal` macro fragment
1 parent 2737bbe commit ca7aff7

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tests/test_ensure.rs

+13
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,19 @@ fn test_low_precedence_binary_operator() {
132132
test,
133133
"Condition failed: `while false == true && false {} < ()` (() vs ())",
134134
);
135+
136+
let a = 15;
137+
let b = 3;
138+
let test = || Ok(ensure!(a <= b || a - b <= 10));
139+
assert_err(test, "Condition failed: `a <= b || a - b <= 10`");
140+
}
141+
142+
#[test]
143+
fn test_high_precedence_binary_operator() {
144+
let a = 15;
145+
let b = 3;
146+
let test = || Ok(ensure!(a - b <= 10));
147+
assert_err(test, "Condition failed: `a - b <= 10` (12 vs 10)");
135148
}
136149

137150
#[test]

0 commit comments

Comments
 (0)