(self)
| 1271 | |
| 1272 | class RemovalTest(TearDownLocalEventsFixture, fixtures.TestBase): |
| 1273 | def _fixture(self): |
| 1274 | class TargetEvents(event.Events): |
| 1275 | def event_one(self, x, y): |
| 1276 | pass |
| 1277 | |
| 1278 | def event_two(self, x): |
| 1279 | pass |
| 1280 | |
| 1281 | def event_three(self, x): |
| 1282 | pass |
| 1283 | |
| 1284 | class Target: |
| 1285 | dispatch = event.dispatcher(TargetEvents) |
| 1286 | |
| 1287 | return Target |
| 1288 | |
| 1289 | def _wrapped_fixture(self): |
| 1290 | class TargetEvents(event.Events): |
no outgoing calls
no test coverage detected