summaryrefslogtreecommitdiff
path: root/json/tests/draft-next/multipleOf.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft-next/multipleOf.json')
-rw-r--r--json/tests/draft-next/multipleOf.json84
1 files changed, 0 insertions, 84 deletions
diff --git a/json/tests/draft-next/multipleOf.json b/json/tests/draft-next/multipleOf.json
deleted file mode 100644
index d640b3b..0000000
--- a/json/tests/draft-next/multipleOf.json
+++ /dev/null
@@ -1,84 +0,0 @@
-[
- {
- "description": "by int",
- "schema": {
- "$schema": "https://json-schema.org/draft/next/schema",
- "multipleOf": 2
- },
- "tests": [
- {
- "description": "int by int",
- "data": 10,
- "valid": true
- },
- {
- "description": "int by int fail",
- "data": 7,
- "valid": false
- },
- {
- "description": "ignores non-numbers",
- "data": "foo",
- "valid": true
- }
- ]
- },
- {
- "description": "by number",
- "schema": {
- "$schema": "https://json-schema.org/draft/next/schema",
- "multipleOf": 1.5
- },
- "tests": [
- {
- "description": "zero is multiple of anything",
- "data": 0,
- "valid": true
- },
- {
- "description": "4.5 is multiple of 1.5",
- "data": 4.5,
- "valid": true
- },
- {
- "description": "35 is not multiple of 1.5",
- "data": 35,
- "valid": false
- }
- ]
- },
- {
- "description": "by small number",
- "schema": {
- "$schema": "https://json-schema.org/draft/next/schema",
- "multipleOf": 0.0001
- },
- "tests": [
- {
- "description": "0.0075 is multiple of 0.0001",
- "data": 0.0075,
- "valid": true
- },
- {
- "description": "0.00751 is not multiple of 0.0001",
- "data": 0.00751,
- "valid": false
- }
- ]
- },
- {
- "description": "float division = inf",
- "schema": {
- "$schema": "https://json-schema.org/draft/next/schema",
- "type": "integer",
- "multipleOf": 0.123456789
- },
- "tests": [
- {
- "description": "always invalid, but naive implementations may raise an overflow error",
- "data": 1e308,
- "valid": false
- }
- ]
- }
-]