function UpdateRegistryTest::testGetPendingUpdateFunctionsExistingUpdates
@covers ::getPendingUpdateFunctions
      
    
File
- 
              core/
tests/ Drupal/ Tests/ Core/ Update/ UpdateRegistryTest.php, line 232  
Class
- UpdateRegistryTest
 - @coversDefaultClass \Drupal\Core\Update\UpdateRegistry[[api-linebreak]] @group Update
 
Namespace
Drupal\Tests\Core\UpdateCode
public function testGetPendingUpdateFunctionsExistingUpdates() {
  $this->setupBasicExtensions();
  $key_value = $this->prophesize(KeyValueStoreInterface::class);
  $key_value->get('existing_updates', [])
    ->willReturn([
    'module_a_post_update_a',
    'theme_d_post_update_a',
    'theme_d_post_update_b',
  ]);
  $key_value = $key_value->reveal();
  $update_registry = new UpdateRegistry('vfs://drupal', 'sites/default', [
    'module_a',
    'module_b',
    'theme_d',
  ], $key_value, FALSE);
  $this->assertEquals(array_values([
    'module_a_post_update_b',
    'module_b_post_update_a',
    'theme_d_post_update_c',
  ]), array_values($update_registry->getPendingUpdateFunctions()));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.