We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978c00d commit 47c91a0Copy full SHA for 47c91a0
jsonschema/tests/test_validators.py
@@ -1588,6 +1588,19 @@ def test_draft_7(self):
1588
validators.Draft7Validator,
1589
)
1590
1591
+ def test_draft_201909(self):
1592
+ schema = {"$schema": "https://json-schema.org/draft/2019-09/schema"}
1593
+ self.assertIs(
1594
+ validators.validator_for(schema),
1595
+ validators.Draft201909Validator,
1596
+ )
1597
+
1598
+ schema = {"$schema": "https://json-schema.org/draft/2019-09/schema#"}
1599
1600
1601
1602
1603
1604
def test_draft_202012(self):
1605
schema = {"$schema": "https://json-schema.org/draft/2020-12/schema"}
1606
self.assertIs(
0 commit comments