public function testUpdatingASkuPutsToTheSkuResource()
 {
     $this->connection->expects($this->once())->method('put')->with($this->basePath . '/product/skus/1', (object) array());
     Client::updateSku(1, array());
 }