You are here

public function AggregatorPluginManagerTest::testParserInfoAlter in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/aggregator/tests/src/Kernel/AggregatorPluginManagerTest.php \Drupal\Tests\aggregator\Kernel\AggregatorPluginManagerTest::testParserInfoAlter()

Tests that the fetcher info alter hook works.

File

core/modules/aggregator/tests/src/Kernel/AggregatorPluginManagerTest.php, line 34

Class

AggregatorPluginManagerTest
Tests the aggregator plugin manager.

Namespace

Drupal\Tests\aggregator\Kernel

Code

public function testParserInfoAlter() {
  $widget_definition = \Drupal::service('plugin.manager.aggregator.parser')
    ->getDefinition('aggregator_test_parser');

  // Test if hook_aggregator_parser_info_alter is being called.
  $this
    ->assertTrue($widget_definition['definition_altered'], "The 'aggregator_test_parser' plugin definition was updated in `hook_aggregator_parser_info_alter()`");
}