function UpdateRegistryTest::testGetModuleUpdateFunctions

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetModuleUpdateFunctions()

@covers ::getModuleUpdateFunctions

File

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

Class

UpdateRegistryTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Update%21UpdateRegistry.php/class/UpdateRegistry/8.9.x" title="Provides all and missing update implementations." class="local">\Drupal\Core\Update\UpdateRegistry</a> @group Update

Namespace

Drupal\Tests\Core\Update

Code

public function testGetModuleUpdateFunctions() {
    $this->setupBasicModules();
    $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.