aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_324.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/bug_324.py')
-rw-r--r--tests/QtGui/bug_324.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/QtGui/bug_324.py b/tests/QtGui/bug_324.py
new file mode 100644
index 000000000..9777b73a9
--- /dev/null
+++ b/tests/QtGui/bug_324.py
@@ -0,0 +1,32 @@
+''' Test bug 324: http://bugs.openbossa.org/show_bug.cgi?id=324'''
+
+import unittest
+import sys
+import signal
+from PySide.QtCore import *
+from PySide.QtGui import *
+
+class QBug( QObject ):
+ def __init__(self, parent = None):
+ QObject.__init__(self, parent)
+
+ def check(self):
+ self.done.emit("abc")
+
+ done = Signal(str)
+
+class Bug324(unittest.TestCase):
+
+ def on_done(self, val):
+ self.value = val
+
+ def testBug(self):
+ app = QApplication([])
+ bug = QBug()
+ self.value = ''
+ bug.done.connect(self.on_done)
+ bug.check()
+ self.assertEqual(self.value, 'abc')
+
+if __name__ == '__main__':
+ unittest.main()