Skip to content

Commit

Permalink
test: failing test for #861
Browse files Browse the repository at this point in the history
  • Loading branch information
epoberezkin committed Sep 23, 2018
1 parent 12e1655 commit 70362b9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions spec/tests/issues/861_empty_propertynames.json
@@ -0,0 +1,24 @@
[
{
"skip": true,
"description": "propertyNames with empty schema (#861)",
"schema": {
"properties": {
"foo": {"type": "string"}
},
"propertyNames": {}
},
"tests": [
{
"description": "valid",
"data": {"foo": "bar"},
"valid": true
},
{
"description": "invalid",
"data": {"foo": 1},
"valid": false
}
]
}
]

0 comments on commit 70362b9

Please sign in to comment.