public function testDoesNotFindAnEntryWithLookupWhenTheBodyDoesNotExist() {
$this
->storeSimpleEntry();
$this
->assertNotNull($this->response->headers
->get('X-Content-Digest'));
$path = $this
->getStorePath($this->response->headers
->get('X-Content-Digest'));
@unlink($path);
$this
->assertNull($this->store
->lookup($this->request));
}