(s)
| 32 | s.send_response(200) |
| 33 | |
| 34 | def do_POST(s): |
| 35 | s.set_request() |
| 36 | s.send_response(200) |
| 37 | s.send_header("Content-type", "application/json") |
| 38 | s.end_headers() |
| 39 | s.wfile.write(json.dumps(s.get_response()).encode("utf-8")) |
| 40 | |
| 41 | |
| 42 | class TestUserSecrets(unittest.TestCase): |
nothing calls this directly
no test coverage detected