Ignore Test in JSONPath CTS

This commit is contained in:
Fabrice Reix 2025-11-25 11:19:00 +01:00
parent 19deca6137
commit 6b8d2f475b
No known key found for this signature in database
GPG Key ID: 71B8BAD935E3190A
1 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,10 @@ const IGNORED_TESTS: &[&str] = &[
// $[?(@[0, 0, 'a'])]
// The union selector cannot be used directly as a boolean predicate.
// The standard-compliant expression is $[?(@[0] || @['a'])]
"filter, non-singular existence, slice",
// $[?@[0:2]]
// The slice selector cannot be used directly as a boolean predicate
// To check that the array has at least 2 elements, you can use $[?(@[1] exists)]
];
#[derive(Clone, Debug, PartialEq, Eq)]