summaryrefslogtreecommitdiff
path: root/json/tests/draft3/optional/format/uri.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft3/optional/format/uri.json')
-rw-r--r--json/tests/draft3/optional/format/uri.json28
1 files changed, 0 insertions, 28 deletions
diff --git a/json/tests/draft3/optional/format/uri.json b/json/tests/draft3/optional/format/uri.json
deleted file mode 100644
index f024b62..0000000
--- a/json/tests/draft3/optional/format/uri.json
+++ /dev/null
@@ -1,28 +0,0 @@
-[
- {
- "description": "validation of URIs",
- "schema": { "format": "uri" },
- "tests": [
- {
- "description": "a valid URI",
- "data": "http://foo.bar/?baz=qux#quux",
- "valid": true
- },
- {
- "description": "an invalid protocol-relative URI Reference",
- "data": "//foo.bar/?baz=qux#quux",
- "valid": false
- },
- {
- "description": "an invalid URI",
- "data": "\\\\WINDOWS\\fileshare",
- "valid": false
- },
- {
- "description": "an invalid URI though valid URI reference",
- "data": "abc",
- "valid": false
- }
- ]
- }
-]