aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/signals/bug_312.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/signals/bug_312.py b/tests/signals/bug_312.py
index 223b4e143..46b64fa10 100644
--- a/tests/signals/bug_312.py
+++ b/tests/signals/bug_312.py
@@ -2,8 +2,16 @@
# -*- coding: utf-8 -*-
import unittest
+import sys
from PySide.QtCore import QObject, SIGNAL
+class Dummy(object):
+ def __init__(self, parent):
+ self._parent = parent
+
+ def callback(self):
+ self._called = True
+
class MultipleSlots(unittest.TestCase):
def myCB(self):
self._count += 1
@@ -17,6 +25,21 @@ class MultipleSlots(unittest.TestCase):
o.emit(SIGNAL("fire()"))
self.assertEqual(self._count, 200)
+ def testDisconnectCleanup(self):
+ for c in range(5):
+ self._count = 0
+ self._senders = []
+ for i in range(200):
+ o = QObject()
+ QObject.connect(o, SIGNAL("fire()"), lambda: self.myCB())
+ self._senders.append(o)
+ o.emit(SIGNAL("fire()"))
+
+ self.assertEqual(self._count, 200)
+
+ #delete all senders will disconnect the signals
+ self._senders = []
+
if __name__ == '__main__':
unittest.main()