diff --git a/lib/Cake/Network/Http/HttpSocket.php b/lib/Cake/Network/Http/HttpSocket.php index ac6a86a30..f18e043ac 100644 --- a/lib/Cake/Network/Http/HttpSocket.php +++ b/lib/Cake/Network/Http/HttpSocket.php @@ -501,7 +501,7 @@ class HttpSocket extends CakeSocket { * urls. * * {{{ - * $http->configUri('http://www.cakephp.org'); + * $http = new HttpSocket('http://www.cakephp.org'); * $url = $http->url('/search?q=bar'); * }}} * diff --git a/lib/Cake/Test/Case/Network/Http/HttpSocketTest.php b/lib/Cake/Test/Case/Network/Http/HttpSocketTest.php index 2ed3c95a6..bd580cd72 100644 --- a/lib/Cake/Test/Case/Network/Http/HttpSocketTest.php +++ b/lib/Cake/Test/Case/Network/Http/HttpSocketTest.php @@ -287,9 +287,11 @@ class HttpSocketTest extends CakeTestCase { ); $this->assertEquals($this->Socket->config, $expected); $this->assertTrue($r); + $r = $this->Socket->configUri('/this-is-broken'); $this->assertEquals($this->Socket->config, $expected); $this->assertFalse($r); + $r = $this->Socket->configUri(false); $this->assertEquals($this->Socket->config, $expected); $this->assertFalse($r);