(self)
| 261 | ) |
| 262 | |
| 263 | def test_handle_process_exit(self): |
| 264 | assert self.node.handle_process_exit(0) == 0 |
| 265 | |
| 266 | def test_handle_process_exit__failure(self): |
| 267 | on_failure = Mock(name='on_failure') |
nothing calls this directly
no test coverage detected