aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/qcursor_test.py
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2011-02-10 13:05:24 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:53:56 -0300
commite96cb16b14f7a5e3f122befa9abd697c497407ad (patch)
tree2ded3000ba0252705dd605cabadd7c3c2af00f3c /tests/QtGui/qcursor_test.py
parent00f696e3c7305a9283932be00af6cb72f7268f3b (diff)
Added QCursor test. It is related to bug #630.
Bug #630 - Fails to resolve overload for QCursor(QBitmap, QBitmap, int, int) http://bugs.openbossa.org/show_bug.cgi?id=630 Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests/QtGui/qcursor_test.py')
-rw-r--r--tests/QtGui/qcursor_test.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/QtGui/qcursor_test.py b/tests/QtGui/qcursor_test.py
new file mode 100644
index 000000000..ec758d4f1
--- /dev/null
+++ b/tests/QtGui/qcursor_test.py
@@ -0,0 +1,16 @@
+'''Test for Bug 630 - Fails to resolve overload for QCursor(QBitmap, QBitmap, int, int)
+http://bugs.openbossa.org/show_bug.cgi?id=630
+'''
+
+import unittest
+from PySide.QtGui import QBitmap, QCursor, QPixmap
+from helper import UsesQApplication
+
+class TestQCursor(UsesQApplication):
+ def testQCursorConstructor(self):
+ bmp = QBitmap(16, 16)
+ cursor = QCursor(bmp, bmp, 16, 16)
+
+if __name__ == '__main__':
+ unittest.main()
+