(self, id='id', clock=312,
hostname='foo@example.com', pid=4312,
topic='topic', action='action', cver=1)
| 1131 | logger.exception.assert_called() |
| 1132 | |
| 1133 | def Event(self, id='id', clock=312, |
| 1134 | hostname='foo@example.com', pid=4312, |
| 1135 | topic='topic', action='action', cver=1): |
| 1136 | return { |
| 1137 | 'id': id, |
| 1138 | 'clock': clock, |
| 1139 | 'hostname': hostname, |
| 1140 | 'pid': pid, |
| 1141 | 'topic': topic, |
| 1142 | 'action': action, |
| 1143 | 'cver': cver, |
| 1144 | } |
| 1145 | |
| 1146 | def test_on_elect(self): |
| 1147 | c = self.Consumer() |
no outgoing calls
no test coverage detected