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