change Builders to only error at the end

Closes #189
This commit is contained in:
Sean McArthur
2017-08-31 11:45:24 -07:00
parent a02b388b2b
commit 779f8080ef
16 changed files with 390 additions and 313 deletions

View File

@@ -62,9 +62,7 @@ fn test_post() {
let url = format!("http://{}/2", server.addr());
let mut res = reqwest::Client::new()
.unwrap()
.post(&url)
.unwrap()
.body("Hello")
.send()
.unwrap();