(self)
| 112 | b.close() |
| 113 | |
| 114 | def test_double_bind(self): |
| 115 | ADDRESS = r'\\.\pipe\test_double_bind-%s' % os.getpid() |
| 116 | server1 = windows_events.PipeServer(ADDRESS) |
| 117 | with self.assertRaises(PermissionError): |
| 118 | windows_events.PipeServer(ADDRESS) |
| 119 | server1.close() |
| 120 | |
| 121 | def test_pipe(self): |
| 122 | res = self.loop.run_until_complete(self._test_pipe()) |
nothing calls this directly
no test coverage detected