You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
590 B
26 lines
590 B
10 months ago
|
[
|
||
|
{
|
||
|
"given": {
|
||
|
"foo": [{"name": "a"}, {"name": "b"}],
|
||
|
"bar": {"baz": "qux"}
|
||
|
},
|
||
|
"cases": [
|
||
|
{
|
||
|
"expression": "@",
|
||
|
"result": {
|
||
|
"foo": [{"name": "a"}, {"name": "b"}],
|
||
|
"bar": {"baz": "qux"}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"expression": "@.bar",
|
||
|
"result": {"baz": "qux"}
|
||
|
},
|
||
|
{
|
||
|
"expression": "@.foo[0]",
|
||
|
"result": {"name": "a"}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|