示例#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)