summaryrefslogtreecommitdiff
path: root/json/tests/draft-next/minItems.json
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2022-08-06 11:49:26 +0300
committerJulian Berman <Julian@GrayVines.com>2022-08-06 11:49:26 +0300
commit7a5fd08611cb2fb07b8200860a4e352eb33ae7bf (patch)
treeaedb96380b759ae33aa4da1a332a8186bb8b7d48 /json/tests/draft-next/minItems.json
parentb0f44a5d2e95c0f2b04bf59f74e0cdf43ea45729 (diff)
downloadjsonschema-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/minItems.json')
-rw-r--r--json/tests/draft-next/minItems.json44
1 files changed, 0 insertions, 44 deletions
diff --git a/json/tests/draft-next/minItems.json b/json/tests/draft-next/minItems.json
deleted file mode 100644
index d3b1872..0000000
--- a/json/tests/draft-next/minItems.json
+++ /dev/null
@@ -1,44 +0,0 @@
-[
- {
- "description": "minItems validation",
- "schema": {"minItems": 1},
- "tests": [
- {
- "description": "longer is valid",
- "data": [1, 2],
- "valid": true
- },
- {
- "description": "exact length is valid",
- "data": [1],
- "valid": true
- },
- {
- "description": "too short is invalid",
- "data": [],
- "valid": false
- },
- {
- "description": "ignores non-arrays",
- "data": "",
- "valid": true
- }
- ]
- },
- {
- "description": "minItems validation with a decimal",
- "schema": {"minItems": 1.0},
- "tests": [
- {
- "description": "longer is valid",
- "data": [1, 2],
- "valid": true
- },
- {
- "description": "too short is invalid",
- "data": [],
- "valid": false
- }
- ]
- }
-]