aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/x11_symbols.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/x11_symbols.py')
-rw-r--r--tests/QtGui/x11_symbols.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/QtGui/x11_symbols.py b/tests/QtGui/x11_symbols.py
new file mode 100644
index 000000000..29cce150e
--- /dev/null
+++ b/tests/QtGui/x11_symbols.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()