You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/qtpy/tests/test_qthelp.py

23 lines
707 B

"""Test for QtHelp namespace."""
from __future__ import absolute_import
import pytest
def test_qthelp():
"""Test the qtpy.QtHelp namespace."""
from qtpy import QtHelp
assert QtHelp.QHelpContentItem is not None
assert QtHelp.QHelpContentModel is not None
assert QtHelp.QHelpContentWidget is not None
assert QtHelp.QHelpEngine is not None
assert QtHelp.QHelpEngineCore is not None
assert QtHelp.QHelpIndexModel is not None
assert QtHelp.QHelpIndexWidget is not None
assert QtHelp.QHelpSearchEngine is not None
assert QtHelp.QHelpSearchQuery is not None
assert QtHelp.QHelpSearchQueryWidget is not None
assert QtHelp.QHelpSearchResultWidget is not None