aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/x11_symbols_test.py
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.lima@openbossa.org>2010-06-08 11:17:48 -0300
committerHugo Parente Lima <hugo.lima@openbossa.org>2010-06-10 15:31:43 -0300
commite47b49f86d63845fe214768838c4fc7c55e3012a (patch)
treecd2f2c85dcd7a7fe6a17408c34246900cd7606e0 /tests/QtGui/x11_symbols_test.py
parent00918cb847dfa1b28acb791c66cb444bc2123f79 (diff)
Re-add the possibility to run tests by module.
Diffstat (limited to 'tests/QtGui/x11_symbols_test.py')
-rw-r--r--tests/QtGui/x11_symbols_test.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/QtGui/x11_symbols_test.py b/tests/QtGui/x11_symbols_test.py
new file mode 100644
index 000000000..29cce150e
--- /dev/null
+++ b/tests/QtGui/x11_symbols_test.py
@@ -0,0 +1,17 @@
+
+''' Test the presence of X11 symbols in QtGui'''
+
+import unittest
+
+from PySide.QtGui import QPixmap
+
+class X11Test(unittest.TestCase):
+
+ def test(self):
+ self.assert_('handle' in dir(QPixmap))
+ self.assert_('x11Info' in dir(QPixmap))
+ self.assert_('x11PictureHandle' in dir(QPixmap))
+ self.assert_('x11SetDefaultScreen' in dir(QPixmap))
+
+if __name__ == '__main__':
+ unittest.main()