shanejansen / touchstone

Touchstone is a testing framework for your services that focuses on component, end-to-end, and exploratory testing.
17 stars 2 forks source link

Multi-line default documents for mock MongoDb throws exception #17

Closed shanejansen closed 3 years ago

shanejansen commented 3 years ago

Example:

---
databases:
  - name: myapp
    collections:
      - name: users
        documents:
          - { "firstName": "John", "lastName": "Smith" }
          - >
            {
                "firstName": "Jane",
                "lastName": "Brown"
            }