summary refs log tree commit diff
path: root/tests/test_test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_test_utils.py')
-rw-r--r--tests/test_test_utils.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/test_test_utils.py b/tests/test_test_utils.py
index dcf946fc1a..b42787dd25 100644
--- a/tests/test_test_utils.py
+++ b/tests/test_test_utils.py
@@ -50,3 +50,21 @@ class MockClockTestCase(unittest.TestCase):
         self.clock.advance_time(5)
 
         self.assertTrue(invoked[1])
+
+    def test_cancel_later(self):
+        invoked = [0, 0]
+
+        def _cb0():
+            invoked[0] = 1
+        t0 = self.clock.call_later(10, _cb0)
+
+        def _cb1():
+            invoked[1] = 1
+        t1 = self.clock.call_later(20, _cb1)
+
+        self.clock.cancel_call_later(t0)
+
+        self.clock.advance_time(30)
+
+        self.assertFalse(invoked[0])
+        self.assertTrue(invoked[1])