summaryrefslogtreecommitdiff
path: root/json/tests/draft3/optional/format/ip-address.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft3/optional/format/ip-address.json')
-rw-r--r--json/tests/draft3/optional/format/ip-address.json23
1 files changed, 0 insertions, 23 deletions
diff --git a/json/tests/draft3/optional/format/ip-address.json b/json/tests/draft3/optional/format/ip-address.json
deleted file mode 100644
index 91cac9f..0000000
--- a/json/tests/draft3/optional/format/ip-address.json
+++ /dev/null
@@ -1,23 +0,0 @@
-[
- {
- "description": "validation of IP addresses",
- "schema": { "format": "ip-address" },
- "tests": [
- {
- "description": "a valid IP address",
- "data": "192.168.0.1",
- "valid": true
- },
- {
- "description": "an IP address with too many components",
- "data": "127.0.0.0.1",
- "valid": false
- },
- {
- "description": "an IP address with out-of-range values",
- "data": "256.256.256.256",
- "valid": false
- }
- ]
- }
-]