aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_307.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/bug_307.py')
-rw-r--r--tests/QtGui/bug_307.py27
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 000000000..1a4446b83
--- /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()