json response is \"Value\": 0.23
i want to put assertion here value should be less than 3 so how to do this ? tried some examples in documentation but they are for arra
You can construct it as below:
* def resp = { "Value": 0.23 } * match resp == { "Value": '#? _ < 3' } * match resp.Value == '#? _ < 3'