(self)
| 16 | self.send_response(200) |
| 17 | |
| 18 | def do_POST(self): |
| 19 | HTTPHandler.path = self.path |
| 20 | HTTPHandler.headers = self.headers |
| 21 | HTTPHandler.called = True |
| 22 | self.send_response(200) |
| 23 | self.send_header("Content-type", "application/json") |
| 24 | self.end_headers() |
| 25 | |
| 26 | class TestGoogleGenAiPatch(unittest.TestCase): |
| 27 | endpoint = "http://127.0.0.1:80" |
nothing calls this directly
no outgoing calls
no test coverage detected