dont require agent().build()

This commit is contained in:
Martin Algesten
2018-07-01 10:24:42 +02:00
parent 03928a05c5
commit a14e75fcbc
4 changed files with 6 additions and 6 deletions

View File

@@ -17,7 +17,7 @@ include!("unit.rs");
/// can keep a state. /// can keep a state.
/// ///
/// ``` /// ```
/// let agent = ureq::agent().build(); /// let agent = ureq::agent();
/// ///
/// let auth = agent /// let auth = agent
/// .post("/login") /// .post("/login")
@@ -222,7 +222,7 @@ impl Agent {
/// that `Set-Cookie` in the agent. /// that `Set-Cookie` in the agent.
/// ///
/// ``` /// ```
/// let agent = ureq::agent().build(); /// let agent = ureq::agent();
/// ///
/// agent.get("http://www.google.com").call(); /// agent.get("http://www.google.com").call();
/// ///
@@ -239,7 +239,7 @@ impl Agent {
/// Set a cookie in this agent. /// Set a cookie in this agent.
/// ///
/// ``` /// ```
/// let agent = ureq::agent().build(); /// let agent = ureq::agent();
/// ///
/// let cookie = ureq::Cookie::new("name", "value"); /// let cookie = ureq::Cookie::new("name", "value");
/// agent.set_cookie(cookie); /// agent.set_cookie(cookie);

View File

@@ -133,7 +133,7 @@ pub use serde_json::{to_value as serde_to_value, Map as SerdeMap, Value as Serde
/// Agents are used to keep state between requests. /// Agents are used to keep state between requests.
pub fn agent() -> Agent { pub fn agent() -> Agent {
Agent::new() Agent::new().build()
} }
/// Make a request setting the HTTP method via a string. /// Make a request setting the HTTP method via a string.

View File

@@ -27,7 +27,7 @@ fn agent_reuse_headers() {
#[test] #[test]
fn agent_cookies() { fn agent_cookies() {
let agent = agent().build(); let agent = agent();
test::set_handler("/agent_cookies", |_unit| { test::set_handler("/agent_cookies", |_unit| {
test::make_response( test::make_response(

View File

@@ -20,7 +20,7 @@ fn read_range() {
#[test] #[test]
fn agent_pool() { fn agent_pool() {
let agent = agent().build(); let agent = agent();
// req 1 // req 1
let resp = agent.get("https://s3.amazonaws.com/foosrvr/bbb.mp4") let resp = agent.get("https://s3.amazonaws.com/foosrvr/bbb.mp4")