Coverage for phml\utils\validate\__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v6.5.0, created at 2022-12-08 11:07 -0600
« prev ^ index » next coverage.py v6.5.0, created at 2022-12-08 11:07 -0600
1"""utils.validate
3A collection of utilities centered around validating nodes, types,
4values on nodes, and any other condition you want to apply to a node
5or ast.
6"""
8from .check import Test, check
9from .validate import *
11# __all__ = [
12# "validate",
13# "parent",
14# "literal",
15# "generated",
16# "has_property",
17# "is_heading",
18# "is_css_link",
19# "is_css_style",
20# "is_javascript",
21# "is_element",
22# "is_event_handler",
23# "test",
24# "Test"
25# ]