示例#1
0
 def test_http_post(self):
     """Test HTTP POST request."""
     http = ProbeHTTP("httpbin.org")
     http_get_response = http.post("/post", data={"hello": "world"})
     self.assertTrue(http_get_response.status_code == 200)
 def test_http_post(self):
     """Test HTTP POST request."""
     http = ProbeHTTP("httpbin.org")
     http_get_response = http.post("/post", data={"hello": "world"})
     self.assertTrue(http_get_response.status_code == 200)