Sha256: c84ed29b1b521590b3ace877a561fb3028fd51777aa546937dd07377251db110

Contents?: true

Size: 463 Bytes

Versions: 1

Compression:

Stored size: 463 Bytes

Contents

Feature: Array constraints
  Scenario: Minimum number of items
    Given the following JSON schema:
      """json
      {
        "$schema": "http://json-schema.org/draft-04/schema#",
        "type": "array",
        "minItems": 4,
        "items": {
          "type": "string",
          "minLength": 3
        }
      }
      """
    When I run the JSON data generator
    Then the JSON output should be:
      """json
      ["aaa","aaa","aaa","aaa"]
      """

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
json_test_data-0.1.0 features/array_constraints.feature