-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Labels
enhancementNew feature or requestNew feature or request
Description
The following test fails due to the $.prod:id path
#[test]
fn colon_token_in_path() {
setup();
let payload = json!({
"prod:id": "G637",
"prod_name": "coffee table",
"price": 194
});
select_and_then_compare("$.price", payload.clone(), json!([194]));
select_and_then_compare("$.prod_name", payload.clone(), json!(["coffee table"]));
select_and_then_compare("$.prod:id", payload.clone(), json!(["G637"]));
}
Returning an empty array []
test colon_token_in_path ... FAILED
failures:
---- colon_token_in_path stdout ----
thread 'colon_token_in_path' panicked at 'assertion failed: `(left == right)`
left: `[]`,
right: `[String("G637")]`: $.prod:id', tests/common.rs:41:5
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request