public function testUpdatingAProductCustomFieldPutsToTheProductCustomFieldResource()
 {
     $this->connection->expects($this->once())->method('put')->with($this->basePath . '/products/1/customfields/1', (object) array());
     Client::updateProductCustomField(1, 1, array());
 }