aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_324.py
blob: 9777b73a94c6d263ef56ca3e34e6207df8f8fcaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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()