public function testGetByCityName()
 {
     $city = 'los angeles';
     $this->mockRequester->shouldReceive('makeRequest')->once()->with(array('q' => 'los angeles,us', 'units' => 'imperial'));
     $this->openWeather->getByCityName($city);
 }