From 94dd6e146f3cc63c5b80ad7cd2ee5221b9502265 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Wed, 2 Aug 2017 13:55:04 +0200 Subject: Add QTimeZone Task-number: PYSIDE-487 Change-Id: I9a2c19c6b8415e3f608531b315a6841eb3de55f5 Reviewed-by: Alexandru Croitor --- sources/pyside2/tests/QtCore/CMakeLists.txt | 1 + sources/pyside2/tests/QtCore/qtimezone_test.py | 43 ++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 sources/pyside2/tests/QtCore/qtimezone_test.py (limited to 'sources/pyside2/tests/QtCore') diff --git a/sources/pyside2/tests/QtCore/CMakeLists.txt b/sources/pyside2/tests/QtCore/CMakeLists.txt index 436af3dac..0a3fda0bb 100644 --- a/sources/pyside2/tests/QtCore/CMakeLists.txt +++ b/sources/pyside2/tests/QtCore/CMakeLists.txt @@ -102,6 +102,7 @@ PYSIDE_TEST(qthread_signal_test.py) PYSIDE_TEST(qthread_test.py) PYSIDE_TEST(qtimer_singleshot_test.py) PYSIDE_TEST(qtimer_timeout_test.py) +PYSIDE_TEST(qtimezone_test.py) PYSIDE_TEST(qtnamespace_test.py) PYSIDE_TEST(qurl_test.py) PYSIDE_TEST(repr_test.py) diff --git a/sources/pyside2/tests/QtCore/qtimezone_test.py b/sources/pyside2/tests/QtCore/qtimezone_test.py new file mode 100644 index 000000000..e0bebdfbf --- /dev/null +++ b/sources/pyside2/tests/QtCore/qtimezone_test.py @@ -0,0 +1,43 @@ +############################################################################# +## +## Copyright (C) 2017 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the test suite of PySide2. +## +## $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 unittest + +from PySide2.QtCore import QTimeZone + +class TestQTimeZone (unittest.TestCase): + def testTimeZone(self): + id = 'Europe/Berlin' + timeZone = QTimeZone(id) + self.assertTrue(timeZone.isValid()) + self.assertEqual(timeZone.id(), id) + name = timeZone.displayName(QTimeZone.GenericTime, QTimeZone.DefaultName) + self.assertTrue(name) + +if __name__ == '__main__': + unittest.main() -- cgit v1.2.3