File: test_qtquick3d.py

package info (click to toggle)
python-qtpy 2.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 924 kB
  • sloc: python: 4,767; sh: 28; makefile: 19
file content (12 lines) | stat: -rw-r--r-- 327 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
import pytest

from qtpy.tests.utils import pytest_importorskip


def test_qtquick3d():
    """Test the qtpy.QtQuick3D namespace"""
    QtQuick3D = pytest_importorskip("qtpy.QtQuick3D")

    assert QtQuick3D.QQuick3D is not None
    assert QtQuick3D.QQuick3DGeometry is not None
    assert QtQuick3D.QQuick3DObject is not None