(self)
| 14 | self.send_response(200) |
| 15 | |
| 16 | def do_GET(self): |
| 17 | print('YO MOD', self.path) |
| 18 | HTTPHandler.called = True |
| 19 | self.send_response(200) |
| 20 | self.send_header("Content-type", "application/json") |
| 21 | self.end_headers() |
| 22 | |
| 23 | class TestGoogleGenerativeAiPatchDisabled(unittest.TestCase): |
| 24 | http_endpoint = "http://127.0.0.1:80" |
nothing calls this directly
no outgoing calls
no test coverage detected