aboutsummaryrefslogtreecommitdiff
path: root/bin/jsonschema/tests/draft3/minItems.json
diff options
context:
space:
mode:
Diffstat (limited to 'bin/jsonschema/tests/draft3/minItems.json')
-rw-r--r--bin/jsonschema/tests/draft3/minItems.json28
1 files changed, 0 insertions, 28 deletions
diff --git a/bin/jsonschema/tests/draft3/minItems.json b/bin/jsonschema/tests/draft3/minItems.json
deleted file mode 100644
index ed51188..0000000
--- a/bin/jsonschema/tests/draft3/minItems.json
+++ /dev/null
@@ -1,28 +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
- }
- ]
- }
-]