/**
  * @expectedException \Geocoder\Exception\UnsupportedException
  * @expectedExceptionMessage The IGNOpenLSProvider does not support IP addresses.
  */
 public function testGetGeocodedDataWithIPv6()
 {
     $provider = new IGNOpenLSProvider($this->getAdapter(), 'api_key');
     $provider->getGeocodedData('::ffff:74.200.247.59');
 }