コード例 #1
0
ファイル: test_entities.py プロジェクト: EnTeQuAk/kombu
 def test_unbind(self):
     b = Queue("foo", self.exchange, "foo", channel=Channel())
     b.unbind()
     self.assertIn("queue_unbind", b.channel)
コード例 #2
0
ファイル: test_entities.py プロジェクト: rumineykova/kombu
 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)