executeMigration('d6_aggregator_settings'); } /** * Tests migration of aggregator variables to aggregator.settings.yml. */ public function testAggregatorSettings() { $config = $this->config('aggregator.settings'); $this->assertIdentical('aggregator', $config->get('fetcher')); $this->assertIdentical('aggregator', $config->get('parser')); $this->assertIdentical(['aggregator'], $config->get('processors')); $this->assertIdentical(600, $config->get('items.teaser_length')); $this->assertIdentical('
      • ', $config->get('items.allowed_html')); $this->assertIdentical(9676800, $config->get('items.expire')); $this->assertIdentical(3, $config->get('source.list_max')); $this->assertConfigSchema(\Drupal::service('config.typed'), 'aggregator.settings', $config->get()); } }