24 lines
582 B
JSON
24 lines
582 B
JSON
|
[
|
||
|
{
|
||
|
"description": "pattern validation",
|
||
|
"schema": {"pattern": "^a*$"},
|
||
|
"tests": [
|
||
|
{
|
||
|
"description": "a matching pattern is valid",
|
||
|
"data": "aaa",
|
||
|
"valid": true
|
||
|
},
|
||
|
{
|
||
|
"description": "a non-matching pattern is invalid",
|
||
|
"data": "abc",
|
||
|
"valid": false
|
||
|
},
|
||
|
{
|
||
|
"description": "ignores non-strings",
|
||
|
"data": true,
|
||
|
"valid": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|