aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_500.py
blob: 86114957b9525a2b7970c51fc9f22678db899a38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/python

import unittest

from PySide.QtCore import *
from PySide.QtGui import *
from helper import UsesQApplication

class NeverDiesTest(UsesQApplication):

    def testIt(self):
        QPrintDialog()

if __name__ == "__main__":
    unittest.main()