diff options
| author | Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> | 2024-12-17 10:51:38 +0100 |
|---|---|---|
| committer | Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> | 2024-12-17 12:02:23 +0100 |
| commit | e89255f981821967330c6046187c8942f7ca32a0 (patch) | |
| tree | a2286b645d1233bb5bb49e349e8f6b8ce14964fd /sources/pyside6/tests/QtWebView/test_webview.py | |
| parent | e5d047ad6e3984ea8fccbdac0f896511fbe1fdaf (diff) | |
PySide: Add WebView for macOS
- caused by wrong condition check in 83603fed574fc7b0eed452b347170862b12a98f6
Pick-to: 6.8
Fixes: PYSIDE-2964
Change-Id: I1b5c441cd7448898e44f8d829b91202e68168666
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside6/tests/QtWebView/test_webview.py')
| -rw-r--r-- | sources/pyside6/tests/QtWebView/test_webview.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sources/pyside6/tests/QtWebView/test_webview.py b/sources/pyside6/tests/QtWebView/test_webview.py new file mode 100644 index 000000000..e8f4ecc6b --- /dev/null +++ b/sources/pyside6/tests/QtWebView/test_webview.py @@ -0,0 +1,33 @@ +# Copyright (C) 2024 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +from __future__ import annotations + +'''Unit test for WebView''' + +import os +import sys +import unittest +from pathlib import Path + +# Append the necessary paths to sys.path +sys.path.append(os.fspath(Path(__file__).resolve().parents[1])) +from init_paths import init_test_paths +init_test_paths(False) + +from PySide6.QtWebView import QtWebView + +from helper.usesqapplication import UsesQApplication + + +class QWebViewTestCase(UsesQApplication): + def test_webview_exists(self): + # Initialize QtWebView + QtWebView.initialize() + + # Check if QtWebView can be initialized + self.assertTrue(QtWebView is not None) + print("QtWebView is available in PySide6.") + + +if __name__ == "__main__": + unittest.main() |
