()
| 81 | def test_ignore_event_arguments_if_no_argument_required(self): |
| 82 | call_count = [0] |
| 83 | def event_with_no_argument(): |
| 84 | call_count[0] += 1 |
| 85 | |
| 86 | self.em.register('event_with_argument', event_with_no_argument) |
| 87 | self.em.trigger('event_with_argument', 'the argument') |
nothing calls this directly
no outgoing calls
no test coverage detected