aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/tests
diff options
context:
space:
mode:
authorFriedemann Kleint <[email protected]>2020-09-15 09:29:46 +0200
committerFriedemann Kleint <[email protected]>2020-09-18 05:34:30 +0000
commit6212d725a48f634c2c03dc9a8a66d978917f97a8 (patch)
treec4a38fb8aa1f64ad3ceb7e790e835d3618821e0b /sources/pyside2/tests
parent4c5e405e691f707f2765b5f920c28213a36d22e5 (diff)
Adapt to changes in qtbase
- Renamed QIconEngine::AvailableSizesArgument to ScaledPixmapArgument - Remove XML/SAX classes after qtbase/79e0374143ab385cb12a17443e91c8eb9d2f3a4b - Adapt quick type registering to changes in QMetaTypeInterface qtbase/92b37676328a960bc092b1f3834233c550376457 Task-number: PYSIDE-1339 Task-number: PYSIDE-904 Task-number: QTBUG-86480 Change-Id: Ibff2bddbf040bb25fb85ca3c0845608b2bca1e7e Reviewed-by: Christian Tismer <[email protected]>
Diffstat (limited to 'sources/pyside2/tests')
-rw-r--r--sources/pyside2/tests/QtXml/CMakeLists.txt1
-rw-r--r--sources/pyside2/tests/QtXml/qxmlsimplereader_test.py70
2 files changed, 0 insertions, 71 deletions
diff --git a/sources/pyside2/tests/QtXml/CMakeLists.txt b/sources/pyside2/tests/QtXml/CMakeLists.txt
index 2c21bf87d..feb230af3 100644
--- a/sources/pyside2/tests/QtXml/CMakeLists.txt
+++ b/sources/pyside2/tests/QtXml/CMakeLists.txt
@@ -1,2 +1 @@
PYSIDE_TEST(qdomdocument_test.py)
-PYSIDE_TEST(qxmlsimplereader_test.py)
diff --git a/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py b/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py
deleted file mode 100644
index a30d68cde..000000000
--- a/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py
+++ /dev/null
@@ -1,70 +0,0 @@
-#!/usr/bin/python
-
-#############################################################################
-##
-## Copyright (C) 2016 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$
-##
-#############################################################################
-
-import os
-import sys
-import unittest
-
-sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
-from init_paths import init_test_paths
-init_test_paths(False)
-
-from PySide2.QtXml import QXmlSimpleReader
-
-class QXmlSimpleReaderTest(unittest.TestCase):
-
- def testQXmlSimpleReaderInstatiation(self):
- '''QXmlSimpleReader must be a concrete class not an abstract one.'''
- reader = QXmlSimpleReader()
-
- def testQXmlSimpleReaderFeatures(self):
- '''Calls the QXmlSimpleReader.features method. The features checked
- (at least the first two) can be found in the QXmlSimpleReader documentation:
- http://qt.nokia.com/doc/4.6/qxmlsimplereader.html#setFeature
- '''
- reader = QXmlSimpleReader()
- hasFeature, ok = reader.feature('http://xml.org/sax/features/namespaces')
- self.assertEqual((hasFeature, ok), (True, True))
-
- hasFeature, ok = reader.feature('http://xml.org/sax/features/namespace-prefixes')
- self.assertEqual((hasFeature, ok), (False, True))
-
- hasFeature, ok = reader.feature('foobar')
- self.assertEqual((hasFeature, ok), (False, False))
-
- def testQXmlSimpleReaderProperty(self):
- '''Tries to get a non existent property.'''
- reader = QXmlSimpleReader()
- prop, ok = reader.property('foo')
- self.assertEqual((prop, ok), (None, False))
-
-if __name__ == '__main__':
- unittest.main()
-