зеркало из https://github.com/mozilla/jexl-rs.git
- Address PR comments
Signed-off-by: William Johnson <wjohnson@DDN12219M.local>
This commit is contained in:
Родитель
10bb05a0f9
Коммит
b28fe78294
|
@ -803,7 +803,7 @@ mod tests {
|
|||
value!([{"bobo": 50, "fofo": 100}, {"bobo": 60, "baz": 90}])
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
#[test]
|
||||
fn test_binary_op_eq_ne() {
|
||||
let evaluator = Evaluator::new();
|
||||
|
@ -835,8 +835,7 @@ mod tests {
|
|||
test("BOOLEAN", "true", true);
|
||||
test("OBJECT", "OBJECT", true);
|
||||
test("ARRAY", "[ 'string' ]", true);
|
||||
test("NULL", "Null", true);
|
||||
test("NULL", "null", true);
|
||||
test("NULL", "null", true);
|
||||
|
||||
test("OBJECT", "{ 'x': 1, 'y': 2 }", false);
|
||||
|
||||
|
|
|
@ -138,7 +138,7 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_dot_op_equality_with_null() {
|
||||
let exp = "foo.bar == Null";
|
||||
let exp = "foo.bar == null";
|
||||
let parsed = Parser::parse(exp).unwrap();
|
||||
assert_eq!(
|
||||
parsed,
|
||||
|
|
|
@ -128,9 +128,7 @@ String: String = {
|
|||
};
|
||||
|
||||
Null: Option<Box<Expression>> = {
|
||||
"Null" => None,
|
||||
"null" => None,
|
||||
"NULL" => None,
|
||||
}
|
||||
|
||||
Identifier: String = {
|
||||
|
|
Загрузка…
Ссылка в новой задаче