aboutsummaryrefslogtreecommitdiffstats
path: root/tests/qtcore
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-01-18 18:13:42 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-01-18 18:13:42 -0200
commit1b2e58b9175870d888075f21a35d05c39e4c4a90 (patch)
tree623df07d02a40fb31912cce3b1d21b0f66c29460 /tests/qtcore
parent53500b6542c176c10598a42b04d88bb65913a2b9 (diff)
QKeySequence is a class from QtGui, so this test has been moved to QtGui tests directory.
Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'tests/qtcore')
-rw-r--r--tests/qtcore/qstring_qkeysequence_test.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/qtcore/qstring_qkeysequence_test.py b/tests/qtcore/qstring_qkeysequence_test.py
deleted file mode 100644
index d39459cef..000000000
--- a/tests/qtcore/qstring_qkeysequence_test.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-'''Tests QString using QKeySequence parameter'''
-
-import unittest
-
-from PySide.QtCore import QString
-from PySide.QtGui import QKeySequence
-
-class QStringQKeySequenceTest(unittest.TestCase):
- '''Tests QString using QKeySequence parameter'''
-
- def testQStringQKeySequence(self):
- a = QString(QKeySequence("Ctrl+A"))
-
-if __name__ == '__main__':
- unittest.main()
-