(self)
| 371 | self.wfile.write(f'OK: here is {self.path}\r\n'.encode()) |
| 372 | |
| 373 | def setUp(self): |
| 374 | super().setUp() |
| 375 | self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 376 | self.sock = self.enterContext(self.sock) |
| 377 | self.sock.connect((self.HOST, self.PORT)) |
| 378 | |
| 379 | def test_simple_get(self): |
| 380 | self.sock.send(b'GET /index.html\r\n') |
nothing calls this directly
no test coverage detected