Extends
lithium\test\UnitSource
public function testMessageWithNoHeaders() {
$body = "\n<html>...</html>\n";
$message = "\r\n\r\n{$body}";
$response = new Response(compact('message'));
$this->assertFalse($response->headers());
$this->assertEqual(trim($body), $response->body());
}