aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/tools/metaobjectdump/test_metaobjectdump.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/tools/metaobjectdump/test_metaobjectdump.py')
-rw-r--r--sources/pyside6/tests/tools/metaobjectdump/test_metaobjectdump.py41
1 files changed, 11 insertions, 30 deletions
diff --git a/sources/pyside6/tests/tools/metaobjectdump/test_metaobjectdump.py b/sources/pyside6/tests/tools/metaobjectdump/test_metaobjectdump.py
index e7f76cca3..fbfea010e 100644
--- a/sources/pyside6/tests/tools/metaobjectdump/test_metaobjectdump.py
+++ b/sources/pyside6/tests/tools/metaobjectdump/test_metaobjectdump.py
@@ -1,30 +1,6 @@
-#############################################################################
-##
-## Copyright (C) 2021 The Qt Company Ltd.
-## Contact: https://www.qt.io/licensing/
-##
-## This file is part of the test suite of Qt for Python.
-##
-## $QT_BEGIN_LICENSE:GPL-EXCEPT$
-## Commercial License Usage
-## Licensees holding valid commercial Qt licenses may use this file in
-## accordance with the commercial license agreement provided with the
-## Software or, alternatively, in accordance with the terms contained in
-## a written agreement between you and The Qt Company. For licensing terms
-## and conditions see https://www.qt.io/terms-conditions. For further
-## information use the contact form at https://www.qt.io/contact-us.
-##
-## GNU General Public License Usage
-## Alternatively, this file may be used under the terms of the GNU
-## General Public License version 3 as published by the Free Software
-## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-## included in the packaging of this file. Please review the following
-## information to ensure the GNU General Public License requirements will
-## be met: https://www.gnu.org/licenses/gpl-3.0.html.
-##
-## $QT_END_LICENSE$
-##
-#############################################################################
+# Copyright (C) 2022 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
import os
import sys
@@ -55,20 +31,25 @@ class TestMetaObjectDump(unittest.TestCase):
pyside_root = self._dir.parents[4]
self._metaobjectdump_tool = pyside_root / "sources" / "pyside-tools" / "metaobjectdump.py"
self._examples_dir = (pyside_root / "examples" /
- "declarative" / "referenceexamples")
+ "qml" / "tutorials" / "extending-qml-advanced")
# Compile a list of examples (tuple [file, base line, command])
examples = []
- for d in ["coercion", "default"]:
+ for d in ["advanced2-Inheritance-and-coercion", "advanced3-Default-properties"]:
example_dir = self._examples_dir / d
examples.append(example_dir / "birthdayparty.py")
examples.append(example_dir / "person.py")
+ # Example with slot
+ examples.append(self._examples_dir / "advanced6-Property-value-source"
+ / "happybirthdaysong.py")
metaobjectdump_cmd_root = [sys.executable, os.fspath(self._metaobjectdump_tool), "-c", "-s"]
self._examples = []
for example in examples:
name = example.parent.name
- baseline_name = f"baseline_{name}_{example.stem}.json"
+ # Simplify "advanced2-Inheritance-and-coercion" -> "inheritance"
+ short_name = name.split("-")[1].lower()
+ baseline_name = f"baseline_{short_name}_{example.stem}.json"
baseline_path = self._dir / baseline_name
cmd = metaobjectdump_cmd_root + [os.fspath(example)]
self._examples.append((example, baseline_path, cmd))