You are here

public function UpdateRegistryTest::testGetPendingUpdateInformationWithRemovedUpdates in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetPendingUpdateInformationWithRemovedUpdates()
  2. 10 core/tests/Drupal/Tests/Core/Update/UpdateRegistryTest.php \Drupal\Tests\Core\Update\UpdateRegistryTest::testGetPendingUpdateInformationWithRemovedUpdates()

@covers ::getPendingUpdateInformation

File

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

Class

UpdateRegistryTest
@coversDefaultClass \Drupal\Core\Update\UpdateRegistry @group Update

Namespace

Drupal\Tests\Core\Update

Code

public function testGetPendingUpdateInformationWithRemovedUpdates() {
  $this
    ->setupBasicModules();
  $key_value = $this
    ->prophesize(KeyValueStoreInterface::class);
  $key_value
    ->get('existing_updates', [])
    ->willReturn([
    'module_a_post_update_a',
  ]);
  $key_value = $key_value
    ->reveal();
  $update_registry = new UpdateRegistry('vfs://drupal', 'sites/default', [
    'module_c',
  ], $key_value, FALSE);
  $this
    ->expectException(RemovedPostUpdateNameException::class);
  $update_registry
    ->getPendingUpdateInformation();
}