aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtCore/qqtversion_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtCore/qqtversion_test.py')
-rw-r--r--tests/QtCore/qqtversion_test.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/QtCore/qqtversion_test.py b/tests/QtCore/qqtversion_test.py
deleted file mode 100644
index 344de69ad..000000000
--- a/tests/QtCore/qqtversion_test.py
+++ /dev/null
@@ -1,18 +0,0 @@
-
-import unittest
-
-from PySide import QtCore
-
-
-class QQtVersionTest(unittest.TestCase):
- '''Tests for QtCore.QT_VERSION and QT_VERSION_STR'''
-
- def testVersion(self):
- self.assert_(hex(QtCore.QT_VERSION) > 0x40500)
-
- def testVersionStr(self):
- self.assert_(QtCore.QT_VERSION_STR)
-
-
-if __name__ == '__main__':
- unittest.main()