From 21786216f2dff1b7065c1f98f09116fe72c993cc Mon Sep 17 00:00:00 2001 From: Renato Filho Date: Mon, 4 Apr 2011 18:07:28 -0300 Subject: Create unit test for bug #793. Reviewer: Luciano Wolf Hugo Parente --- tests/QtGui/CMakeLists.txt | 1 + tests/QtGui/bug_793.py | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 tests/QtGui/bug_793.py (limited to 'tests') diff --git a/tests/QtGui/CMakeLists.txt b/tests/QtGui/CMakeLists.txt index ef9b9ac8b..9306efdcc 100644 --- a/tests/QtGui/CMakeLists.txt +++ b/tests/QtGui/CMakeLists.txt @@ -46,6 +46,7 @@ PYSIDE_TEST(bug_693.py) PYSIDE_TEST(bug_714.py) PYSIDE_TEST(bug_728.py) PYSIDE_TEST(bug_736.py) +PYSIDE_TEST(bug_793.py) PYSIDE_TEST(customproxywidget_test.py) PYSIDE_TEST(deepcopy_test.py) PYSIDE_TEST(float_to_int_implicit_conversion_test.py) diff --git a/tests/QtGui/bug_793.py b/tests/QtGui/bug_793.py new file mode 100644 index 000000000..4fea833ac --- /dev/null +++ b/tests/QtGui/bug_793.py @@ -0,0 +1,30 @@ +import unittest +import sys +from PySide.QtCore import QTimer +from PySide.QtGui import QWidget, QApplication + +class TestW1(QWidget): + def __init__(self, parent = None): + super(TestW1, self).__init__(parent) + TestW2(parent, self) + +class TestW2(QWidget): + def __init__(self, ancestor, parent = None): + super(TestW2, self).__init__(parent) + self.ancestor_ref = ancestor + +class Test(QWidget): + def __init__(self): + super(Test, self).__init__() + TestW1(self) + +class TestQApplicationDestrcutor(unittest.TestCase): + def testDestructor(self): + w = Test() + w.show() + QTimer.singleShot(0, w.close) + +if __name__ == '__main__': + app = QApplication(sys.argv) + unittest.main() + sys.exit(app.exec_()) -- cgit v1.2.3