Exemplo n.º 1
0
 def test_register_timer(self):
     c = self.Consumer()
     c.app.connection_for_read = _amqp_connection()
     g = Gossip(c)
     g.register_timer()
     c.timer.call_repeatedly.assert_called_with(g.interval, g.periodic)
     tref = g._tref
     g.register_timer()
     tref.cancel.assert_called_with()
Exemplo n.º 2
0
 def test_register_timer(self):
     c = self.Consumer()
     c.app.connection_for_read = _amqp_connection()
     g = Gossip(c)
     g.register_timer()
     c.timer.call_repeatedly.assert_called_with(g.interval, g.periodic)
     tref = g._tref
     g.register_timer()
     tref.cancel.assert_called_with()