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