(s)
| 23 | s.send_response(200) |
| 24 | |
| 25 | def do_POST(s): |
| 26 | s.set_request() |
| 27 | s.send_response(200) |
| 28 | s.send_header("Content-type", "application/json") |
| 29 | s.end_headers() |
| 30 | s.wfile.write(json.dumps(s.get_response()).encode("utf-8")) |
| 31 | |
| 32 | class TestUserSessionClient(unittest.TestCase): |
| 33 | SERVER_ADDRESS = urlparse(os.getenv(_KAGGLE_URL_BASE_ENV_VAR_NAME, default="http://127.0.0.1:0")) |
nothing calls this directly
no test coverage detected