forked from winpython/winpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_qtxml.py
More file actions
23 lines (21 loc) · 850 Bytes
/
test_qtxml.py
File metadata and controls
23 lines (21 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import pytest
def test_qtxml():
"""Test the qtpy.QtXml namespace"""
from qtpy import QtXml
assert QtXml.QDomAttr is not None
assert QtXml.QDomCDATASection is not None
assert QtXml.QDomCharacterData is not None
assert QtXml.QDomComment is not None
assert QtXml.QDomDocument is not None
assert QtXml.QDomDocumentFragment is not None
assert QtXml.QDomDocumentType is not None
assert QtXml.QDomElement is not None
assert QtXml.QDomEntity is not None
assert QtXml.QDomEntityReference is not None
assert QtXml.QDomImplementation is not None
assert QtXml.QDomNamedNodeMap is not None
assert QtXml.QDomNode is not None
assert QtXml.QDomNodeList is not None
assert QtXml.QDomNotation is not None
assert QtXml.QDomProcessingInstruction is not None
assert QtXml.QDomText is not None