public function testRestoresResponseHeadersProperlyWithLookup() {
$this
->storeSimpleEntry();
$response = $this->store
->lookup($this->request);
$this
->assertEquals($response->headers
->all(), array_merge(array(
'content-length' => 4,
'x-body-file' => array(
$this
->getStorePath($response->headers
->get('X-Content-Digest')),
),
), $this->response->headers
->all()));
}