aboutsummaryrefslogtreecommitdiffstats
path: root/tests/qtgui/x11_symbols.py
blob: 29cce150efb8b48c4db0c36a621fae1dad5cfe0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()