(self)
| 134 | return c |
| 135 | |
| 136 | def setUp(self): |
| 137 | if is_monkey_patched(): |
| 138 | raise unittest.SkipTest("Can't test libev with monkey patching.") |
| 139 | if LibevConnection is None: |
| 140 | raise unittest.SkipTest('libev does not appear to be installed correctly') |
| 141 | |
| 142 | LibevConnection.initialize_reactor() |
| 143 | super(LibevTimerTest, self).setUp() |
nothing calls this directly
no test coverage detected