/**
  * @test
  */
 public function shouldDoDELETERequest()
 {
     $path = '/some/path';
     $parameters = array('a' => 'b');
     $headers = array('c' => 'd');
     $client = $this->getBrowserMock();
     $httpClient = new HttpClient(array(), $client);
     $httpClient->delete($path, $parameters, $headers);
 }