(self)
| 114 | self.assert_broadcast_called('conf', with_defaults=True) |
| 115 | |
| 116 | def test_hello(self): |
| 117 | self.inspect.hello('george@vandelay.com') |
| 118 | self.assert_broadcast_called( |
| 119 | 'hello', from_node='george@vandelay.com', revoked=None) |
| 120 | |
| 121 | def test_hello__with_revoked(self): |
| 122 | revoked = LimitedSet(100) |
nothing calls this directly
no test coverage detected