aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaulo Alcantara <pcacjr@gmail.com>2011-12-21 14:57:32 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:56:23 -0300
commitb2b14fe9b70cb233b003425328ef1f4d8749c744 (patch)
treec3d5522c6b93cb41136dd6030b13bff1f8bfdf4e /tests
parent481ba5aa3ef94b417211fd25f07f30575b5afa68 (diff)
Fix BUG #1091 - "PixmapFragment and drawPixmapFragments are not bound"
See http://bugs.pyside.org/show_bug.cgi?id=1091. Also minor coding style fixes in QtGui's typesystem. Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewed-by: Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/QtGui/CMakeLists.txt3
-rw-r--r--tests/QtGui/bug_1091.py12
2 files changed, 15 insertions, 0 deletions
diff --git a/tests/QtGui/CMakeLists.txt b/tests/QtGui/CMakeLists.txt
index 1d95576f5..9bac91301 100644
--- a/tests/QtGui/CMakeLists.txt
+++ b/tests/QtGui/CMakeLists.txt
@@ -164,6 +164,9 @@ PYSIDE_TEST(virtual_protected_inheritance_test.py)
PYSIDE_TEST(virtual_pure_override_test.py)
PYSIDE_TEST(wrong_return_test.py)
+if (${QTVERSION} VERSION_GREATER 4.6.9)
+ PYSIDE_TEST(bug_1091.py)
+endif()
if(Q_WS_X11)
PYSIDE_TEST(x11_symbols_test.py)
diff --git a/tests/QtGui/bug_1091.py b/tests/QtGui/bug_1091.py
new file mode 100644
index 000000000..b58d26f18
--- /dev/null
+++ b/tests/QtGui/bug_1091.py
@@ -0,0 +1,12 @@
+''' unit test for BUG #1091 '''
+
+import unittest
+from PySide import QtGui
+
+class QPainterTestCase(unittest.TestCase):
+ def testIt(self):
+ self.assertTrue("PixmapFragment" in dir(QtGui.QPainter))
+ self.assertTrue("drawPixmapFragments" in dir(QtGui.QPainter))
+
+if __name__ == "__main__":
+ unittest.main()