Пример #1
0
 def test_unbind(self):
     b = Queue("foo", self.exchange, "foo", channel=Channel())
     b.unbind()
     self.assertIn("queue_unbind", b.channel)
Пример #2
0
 def test_unbind(self):
     b = Queue('foo', self.exchange, 'foo', channel=get_conn().channel())
     b.unbind()
     self.assertIn('queue_unbind', b.channel)
Пример #3
0
 def test_unbind(self):
     b = Queue("foo", self.exchange, "foo", channel=get_conn().channel())
     b.unbind()
     self.assertIn("queue_unbind", b.channel)
Пример #4
0
 def test_unbind(self):
     b = Queue('foo', self.exchange, 'foo', channel=get_conn().channel())
     b.unbind()
     self.assertIn('queue_unbind', b.channel)