diff options
author | Julian Berman <Julian@GrayVines.com> | 2022-08-06 11:49:26 +0300 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2022-08-06 11:49:26 +0300 |
commit | 7a5fd08611cb2fb07b8200860a4e352eb33ae7bf (patch) | |
tree | aedb96380b759ae33aa4da1a332a8186bb8b7d48 /json/tests/draft-next/prefixItems.json | |
parent | b0f44a5d2e95c0f2b04bf59f74e0cdf43ea45729 (diff) | |
download | jsonschema-7a5fd08611cb2fb07b8200860a4e352eb33ae7bf.tar.gz |
Squashed 'json/' changes from 2782d7c29..f82764080
f82764080 Merge pull request #579 from json-schema-org/sanity-check-strengthening
e5d5e0a2a Also prevent 'tests that' from descriptions.
eaf06b1e8 Remove the last few 'shoulds' from items descriptions.
b7da24fba Kill more shoulds from ECMA and ref tests.
85899fdf4 More description cleanup for Bengali non-ASCII tests.
b84b900f3 Remove 'should' from a format test which anyhow needed a clearer description.
721397c1f Prevent tests from using 'should' in sanity check.
68f380c6f Fix the last non-unique case descriptions.
6383ef638 Remove mistakenly duplicated anyOf tests in draft{4,6,7}.
a5b459fa0 Make sure bignum cases have unique descriptions.
b82b18cdf Assert case descriptions are also unique in sanity checks.
d3d082219 Also check case description length in sanity checks.
5e7804c52 Use subtests when running sanity checks.
8ade92340 Fix two last clashing $ids in draft-next too.
git-subtree-dir: json
git-subtree-split: f8276408005489aa134ec857f5fd3f0fb3ec5954
Diffstat (limited to 'json/tests/draft-next/prefixItems.json')
-rw-r--r-- | json/tests/draft-next/prefixItems.json | 98 |
1 files changed, 0 insertions, 98 deletions
diff --git a/json/tests/draft-next/prefixItems.json b/json/tests/draft-next/prefixItems.json deleted file mode 100644 index f72da11..0000000 --- a/json/tests/draft-next/prefixItems.json +++ /dev/null @@ -1,98 +0,0 @@ -[ - { - "description": "a schema given for prefixItems", - "schema": { - "prefixItems": [ - {"type": "integer"}, - {"type": "string"} - ] - }, - "tests": [ - { - "description": "correct types", - "data": [ 1, "foo" ], - "valid": true - }, - { - "description": "wrong types", - "data": [ "foo", 1 ], - "valid": false - }, - { - "description": "incomplete array of items", - "data": [ 1 ], - "valid": true - }, - { - "description": "array with additional items", - "data": [ 1, "foo", true ], - "valid": true - }, - { - "description": "empty array", - "data": [ ], - "valid": true - }, - { - "description": "JavaScript pseudo-array is valid", - "data": { - "0": "invalid", - "1": "valid", - "length": 2 - }, - "valid": true - } - ] - }, - { - "description": "prefixItems with boolean schemas", - "schema": { - "prefixItems": [true, false] - }, - "tests": [ - { - "description": "array with one item is valid", - "data": [ 1 ], - "valid": true - }, - { - "description": "array with two items is invalid", - "data": [ 1, "foo" ], - "valid": false - }, - { - "description": "empty array is valid", - "data": [], - "valid": true - } - ] - }, - { - "description": "additional items are allowed by default", - "schema": {"prefixItems": [{"type": "integer"}]}, - "tests": [ - { - "description": "only the first item is validated", - "data": [1, "foo", false], - "valid": true - } - ] - }, - { - "description": "prefixItems should properly handle null data", - "schema": { - "prefixItems": [ - { - "type": "null" - } - ] - }, - "tests": [ - { - "description": "null items allowed", - "data": [ null ], - "valid": true - } - ] - } -] |