Files
Julian Berman 0a7fe81530 Update JSON Schema Test Suite
Merge commit '69b18993aa7e2c630745db80df6392a2f758a52e'
2013-05-20 20:09:30 -04:00

19 lines
463 B
JSON

[
{
"description": "ECMA 262 regex dialect recognition",
"schema": { "format": "regex" },
"tests": [
{
"description": "[^] is a valid regex",
"data": "[^]",
"valid": true
},
{
"description": "ECMA 262 has no support for lookbehind",
"data": "(?<=foo)bar",
"valid": false
}
]
}
]