10 lines
176 B
Python
10 lines
176 B
Python
|
from __future__ import absolute_import
|
||
|
|
||
|
import pytest
|
||
|
from qtpy import QtTest
|
||
|
|
||
|
|
||
|
def test_qttest():
|
||
|
"""Test the qtpy.QtTest namespace"""
|
||
|
assert QtTest.QTest is not None
|