From 7a5fd08611cb2fb07b8200860a4e352eb33ae7bf Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Sat, 6 Aug 2022 11:49:26 +0300 Subject: 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 --- json/tests/draft-next/minItems.json | 44 ------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 json/tests/draft-next/minItems.json (limited to 'json/tests/draft-next/minItems.json') 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 - } - ] - } -] -- cgit v1.2.1