aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorrenatofilho <renato.filho@openbossa.org>2010-11-12 19:09:44 -0300
committerrenatofilho <renato.filho@openbossa.org>2010-11-12 19:10:31 -0300
commitd2e204f3df1c80112cf42bb117db81299f93f8cf (patch)
tree3e187109b1e4cf0758188519307bfa9587d2c928 /tests
parent968d376c5dde8e93d59867070fb7fd250c59aad3 (diff)
Removed invalid test.
Diffstat (limited to 'tests')
-rw-r--r--tests/QtCore/CMakeLists.txt1
-rw-r--r--tests/QtCore/qqtversion_test.py18
2 files changed, 0 insertions, 19 deletions
diff --git a/tests/QtCore/CMakeLists.txt b/tests/QtCore/CMakeLists.txt
index f4f38a61c..53388d141 100644
--- a/tests/QtCore/CMakeLists.txt
+++ b/tests/QtCore/CMakeLists.txt
@@ -47,7 +47,6 @@ PYSIDE_TEST(qobject_timer_event_test.py)
PYSIDE_TEST(qobject_tr_as_instance_test.py)
PYSIDE_TEST(qpoint_test.py)
PYSIDE_TEST(qprocess_test.py)
-PYSIDE_TEST(qqtversion_test.py)
PYSIDE_TEST(qrect_test.py)
PYSIDE_TEST(qresource_test.py)
PYSIDE_TEST(qsize_test.py)
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()