(self)
| 366 | |
| 367 | class NamedCallTest(TearDownLocalEventsFixture, fixtures.TestBase): |
| 368 | def _fixture(self): |
| 369 | class TargetEventsOne(event.Events): |
| 370 | def event_one(self, x, y): |
| 371 | pass |
| 372 | |
| 373 | def event_two(self, x, y, **kw): |
| 374 | pass |
| 375 | |
| 376 | def event_five(self, x, y, z, q): |
| 377 | pass |
| 378 | |
| 379 | class TargetOne: |
| 380 | dispatch = event.dispatcher(TargetEventsOne) |
| 381 | |
| 382 | return TargetOne |
| 383 | |
| 384 | def _wrapped_fixture(self): |
| 385 | class TargetEvents(event.Events): |
no outgoing calls
no test coverage detected