зеркало из 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
|
@ -835,7 +835,6 @@ mod tests {
|
||||||
test("BOOLEAN", "true", true);
|
test("BOOLEAN", "true", true);
|
||||||
test("OBJECT", "OBJECT", true);
|
test("OBJECT", "OBJECT", true);
|
||||||
test("ARRAY", "[ 'string' ]", true);
|
test("ARRAY", "[ 'string' ]", true);
|
||||||
test("NULL", "Null", true);
|
|
||||||
test("NULL", "null", true);
|
test("NULL", "null", true);
|
||||||
|
|
||||||
test("OBJECT", "{ 'x': 1, 'y': 2 }", false);
|
test("OBJECT", "{ 'x': 1, 'y': 2 }", false);
|
||||||
|
|
|
@ -138,7 +138,7 @@ mod tests {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_dot_op_equality_with_null() {
|
fn test_dot_op_equality_with_null() {
|
||||||
let exp = "foo.bar == Null";
|
let exp = "foo.bar == null";
|
||||||
let parsed = Parser::parse(exp).unwrap();
|
let parsed = Parser::parse(exp).unwrap();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
parsed,
|
parsed,
|
||||||
|
|
|
@ -128,9 +128,7 @@ String: String = {
|
||||||
};
|
};
|
||||||
|
|
||||||
Null: Option<Box<Expression>> = {
|
Null: Option<Box<Expression>> = {
|
||||||
"Null" => None,
|
|
||||||
"null" => None,
|
"null" => None,
|
||||||
"NULL" => None,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Identifier: String = {
|
Identifier: String = {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче