(self)
| 201 | assert not self.steps |
| 202 | |
| 203 | def test_terminate(self): |
| 204 | x = self.Def(self) |
| 205 | x.create = Mock() |
| 206 | |
| 207 | x.include(self) |
| 208 | delattr(x.obj, 'terminate') |
| 209 | x.terminate(self) |
| 210 | x.obj.stop.assert_called_with() |
| 211 | |
| 212 | |
| 213 | class test_Blueprint: |