/**
  * @expectedException Tufesa\Service\Exceptions\ResponseException
  */
 public function test_problem_with_tufesa_get_destinations_should_raise_an_exception()
 {
     $response = new \Guzzle\Http\Message\Response(200);
     $response->setBody('{"_id": "1.0", "_Response": { "_revAuth": null, "resultField": { "_id": "666", "_message": "SOME DUMMY MESSAGE HERE" } } }');
     $plugin = new \Guzzle\Plugin\Mock\MockPlugin();
     $plugin->addResponse($response);
     $guzzuleClient = new GuzzleClient();
     $guzzuleClient->addSubscriber($plugin);
     $tufesaClient = new Client($guzzuleClient);
     $from = "GDL";
     $places = $tufesaClient->getDestinations($from);
 }