(self)
| 90 | assert q['foo'].exchange == q.default_exchange |
| 91 | |
| 92 | def test_select_add(self): |
| 93 | q = Queues() |
| 94 | q.select(['foo', 'bar']) |
| 95 | q.select_add('baz') |
| 96 | assert sorted(q._consume_from.keys()) == ['bar', 'baz', 'foo'] |
| 97 | |
| 98 | def test_deselect(self): |
| 99 | q = Queues() |
nothing calls this directly
no test coverage detected