function UpdateRegistryTest::testGetModuleUpdateFunctions
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetModuleUpdateFunctions()
@covers ::getModuleUpdateFunctions @group legacy
File
-
core/
tests/ Drupal/ Tests/ Core/ Update/ UpdateRegistryTest.php, line 349
Class
- UpdateRegistryTest
- @coversDefaultClass \Drupal\Core\Update\UpdateRegistry @group Update
Namespace
Drupal\Tests\Core\UpdateCode
public function testGetModuleUpdateFunctions() {
$this->expectDeprecation('Drupal\\Core\\Update\\UpdateRegistry\\getModuleUpdateFunctions() is deprecated in drupal:9.4.0 and is removed from drupal:10.0.0. Use \\Drupal\\Core\\Update\\UpdateRegistry::getUpdateFunctions() instead. See https://www.drupal.org/node/3260162');
$this->setupBasicExtensions();
$key_value = $this->prophesize(KeyValueStoreInterface::class)
->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',
], array_values($update_registry->getModuleUpdateFunctions('module_a')));
$this->assertEquals([
'module_b_post_update_a',
], array_values($update_registry->getModuleUpdateFunctions('module_b')));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.