Activate a patch, returning any created mock.
(self)
| 1656 | |
| 1657 | |
| 1658 | def start(self): |
| 1659 | """Activate a patch, returning any created mock.""" |
| 1660 | result = self.__enter__() |
| 1661 | self._active_patches.append(self) |
| 1662 | return result |
| 1663 | |
| 1664 | |
| 1665 | def stop(self): |
no test coverage detected