(self, channel, *args, **kwargs)
| 70 | class ConsumerCase: |
| 71 | |
| 72 | def create_task_message(self, channel, *args, **kwargs): |
| 73 | m = self.TaskMessage(*args, **kwargs) |
| 74 | m.channel = channel |
| 75 | m.delivery_info = {'consumer_tag': 'mock'} |
| 76 | return m |
| 77 | |
| 78 | |
| 79 | class test_Consumer(ConsumerCase): |
no outgoing calls
no test coverage detected