(self)
| 105 | class DuckTests(test_utils.TestCase): |
| 106 | |
| 107 | def setUp(self): |
| 108 | super().setUp() |
| 109 | self.loop = self.new_test_loop() |
| 110 | self.addCleanup(self.loop.close) |
| 111 | |
| 112 | def test_wrap_future(self): |
| 113 | f = DuckFuture() |
no test coverage detected