diff options
Diffstat (limited to 'tests/QtGui/bug_307.py')
-rw-r--r-- | tests/QtGui/bug_307.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/QtGui/bug_307.py b/tests/QtGui/bug_307.py new file mode 100644 index 00000000..1a4446b8 --- /dev/null +++ b/tests/QtGui/bug_307.py @@ -0,0 +1,27 @@ + +import unittest +import colorsys + +from PySide.QtCore import SIGNAL +from PySide.QtGui import QPushButton, QApplication + + +class Test (QApplication) : + def __init__(self, argv) : + super(Test, self).__init__(argv) + self._called = False + + def called(self): + self._called = True + + +class QApplicationSignalsTest(unittest.TestCase): + def testQuit(self): + app = Test([]) + button = QPushButton("BUTTON") + app.connect(button, SIGNAL("clicked()"), app.called) + button.click() + self.assert_(app._called) + +if __name__ == '__main__': + unittest.main() |