(self, parent)
| 376 | return getattr(self.obj, 'terminate', self.obj.stop)() |
| 377 | |
| 378 | def include(self, parent): |
| 379 | inc, ret = self._should_include(parent) |
| 380 | if inc: |
| 381 | self.obj = ret |
| 382 | parent.steps.append(self) |
| 383 | return inc |
| 384 | |
| 385 | |
| 386 | class ConsumerStep(StartStopStep): |
nothing calls this directly
no test coverage detected