(self)
| 2907 | self.coroutine.close() |
| 2908 | |
| 2909 | def _coroutinestate(self): |
| 2910 | return inspect.getcoroutinestate(self.coroutine) |
| 2911 | |
| 2912 | def test_created(self): |
| 2913 | self.assertEqual(self._coroutinestate(), inspect.CORO_CREATED) |
no outgoing calls
no test coverage detected