function UpdateRegistryTest::testGetPendingUpdateFunctionsNoExistingUpdates

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetPendingUpdateFunctionsNoExistingUpdates()
  2. 10 core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetPendingUpdateFunctionsNoExistingUpdates()
  3. 11.x core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetPendingUpdateFunctionsNoExistingUpdates()

@covers ::getPendingUpdateFunctions

File

core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php, line 145

Class

UpdateRegistryTest
@coversDefaultClass \Drupal\Core\Update\UpdateRegistry[[api-linebreak]] @group Update

Namespace

Drupal\Tests\Core\Update

Code

public function testGetPendingUpdateFunctionsNoExistingUpdates() {
  $this->setupBasicModules();
  $key_value = $this->prophesize(KeyValueStoreInterface::class);
  $key_value->get('existing_updates', [])
    ->willReturn([]);
  $key_value = $key_value->reveal();
  $update_registry = new UpdateRegistry('vfs://drupal', 'sites/default', [
    'module_a',
    'module_b',
  ], $key_value, FALSE);
  $this->assertEquals([
    'module_a_post_update_a',
    'module_a_post_update_b',
    'module_b_post_update_a',
  ], $update_registry->getPendingUpdateFunctions());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.