Extends
lithium\test\UnitSource
public function testSendWithNull() {
$stream = new Curl($this->_testConfig);
$this->assertTrue(is_resource($stream->open()));
$result = $stream->send(
new Request($this->_testConfig),
array('response' => 'lithium\net\http\Response')
);
$this->assertTrue($result instanceof \lithium\net\http\Response);
$this->assertPattern("/^HTTP/", (string) $result);
}