Skip to content

Commit d74d704

Browse files
committed
Add in some missing internal draft2019-09 tests.
1 parent 4a2232a commit d74d704

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

jsonschema/tests/test_validators.py

+6
Original file line numberDiff line numberDiff line change
@@ -1701,6 +1701,12 @@ class TestDraft7Validator(ValidatorTestMixin, TestCase):
17011701
invalid = {"type": "integer"}, "foo"
17021702

17031703

1704+
class TestDraft201909Validator(ValidatorTestMixin, TestCase):
1705+
Validator = validators.Draft201909Validator
1706+
valid = {}, {}
1707+
invalid = {"type": "integer"}, "foo"
1708+
1709+
17041710
class TestDraft202012Validator(ValidatorTestMixin, TestCase):
17051711
Validator = validators.Draft202012Validator
17061712
valid = {}, {}

0 commit comments

Comments
 (0)