Emil Stanchev
Emil Stanchev
Hi, I've been thinking of modifying gotests to support using the [testing/quick](https://golang.org/pkg/testing/quick/) package to generate test cases and optimize them for code coverage. Have you thought about something similar before...
We don't need to use `mock` to monkey patch `handle_callback_exception` as we currently do here: https://github.com/uber/mutornadomon/blob/master/mutornadomon/monitor.py#L72 ``` self._ioloop_exception_patch = mock.patch.object( self.io_loop, 'handle_callback_exception', handle_callback_exception ) self._ioloop_exception_patch.start() ```