This commit is contained in:
2020-03-27 21:33:57 +01:00
parent 0fdec430af
commit 1ece0e89ef

View File

@@ -579,6 +579,8 @@ mod tests
assert_eq!(format_term("(a % b) % (c * d)"), "a % b % (c * d)");
assert_eq!(format_term("(a % b) % (c / d)"), "a % b % (c / d)");
assert_eq!(format_term("(a % b) % (c % d)"), "a % b % (c % d)");
// TODO: test malformed expressions
}
#[test]