(self)
| 119 | server1.close() |
| 120 | |
| 121 | def test_pipe(self): |
| 122 | res = self.loop.run_until_complete(self._test_pipe()) |
| 123 | self.assertEqual(res, 'done') |
| 124 | |
| 125 | async def _test_pipe(self): |
| 126 | ADDRESS = r'\\.\pipe\_test_pipe-%s' % os.getpid() |
nothing calls this directly
no test coverage detected