public function UpdateRegistryTest::testGetPendingUpdateFunctionsNoExistingUpdates in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetPendingUpdateFunctionsNoExistingUpdates()
- 9 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 182
Class
- UpdateRegistryTest
- @coversDefaultClass \Drupal\Core\Update\UpdateRegistry @group Update
Namespace
Drupal\Tests\Core\UpdateCode
public function testGetPendingUpdateFunctionsNoExistingUpdates() {
$this
->setupBasicExtensions();
$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',
'theme_d',
], $key_value, FALSE);
$this
->assertEquals([
'module_a_post_update_a',
'module_a_post_update_b',
'module_b_post_update_a',
'theme_d_post_update_b',
'theme_d_post_update_c',
], $update_registry
->getPendingUpdateFunctions());
}