aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_546.py
diff options
context:
space:
mode:
authorHugo Parente Lima <hugo.pl@gmail.com>2010-12-30 15:26:20 -0200
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:48:06 -0300
commit394cdb357d88e4c6968d3986ca7820756661fa35 (patch)
tree1b4057fa7f5a5d5344f1b5b6b5ad92df06db651b /tests/QtGui/bug_546.py
parent9b02c46c03a3e246146ccd5b63fda8cb0335aac7 (diff)
Fix bug 546 - "Python crash on exit"
Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
Diffstat (limited to 'tests/QtGui/bug_546.py')
-rw-r--r--tests/QtGui/bug_546.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/QtGui/bug_546.py b/tests/QtGui/bug_546.py
new file mode 100644
index 000000000..845b64ed4
--- /dev/null
+++ b/tests/QtGui/bug_546.py
@@ -0,0 +1,14 @@
+import unittest
+from PySide.QtGui import *
+
+class TestBug546(unittest.TestCase):
+
+ """Test to check a crash at exit"""
+ def testIt(self):
+ app = QApplication([])
+ textEdit = QPlainTextEdit()
+ completer = QCompleter(("foo", "bar"), textEdit)
+ completer.setWidget(textEdit)
+
+if __name__=='__main__':
+ unittest.main()