eykrehbein / strest

⚡️ CI-ready tests for REST APIs configured in YAML
MIT License
1.74k stars 59 forks source link

WIP: validate pointer #63

Closed jgroom33 closed 6 years ago

jgroom33 commented 6 years ago

Support this:

version: 1

requests:
  todoOne:
    url: https://jsonplaceholder.typicode.com/posts
    method: POST
    data:
      json:
        myArray:
        - foo: 1
          bar: 1
        - foo: 2
          bar: 2
    validate:
      jsonpath:
        myArray.1.foo: 2
jgroom33 commented 6 years ago

https://github.com/jgroom33/strest/tree/feature/validate-pointer

jgroom33 commented 6 years ago

70