MigrateTrackerSettingsTest.php
Same filename in other branches
Namespace
Drupal\Tests\tracker\Kernel\Migrate\d7File
-
core/
modules/ tracker/ tests/ src/ Kernel/ Migrate/ d7/ MigrateTrackerSettingsTest.php
View source
<?php
namespace Drupal\Tests\tracker\Kernel\Migrate\d7;
use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
/**
* Tests migration of Tracker settings to configuration.
*
* @group tracker
*/
class MigrateTrackerSettingsTest extends MigrateDrupal7TestBase {
public static $modules = [
'tracker',
];
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->installConfig([
'tracker',
]);
$this->executeMigration('d7_tracker_settings');
}
/**
* Tests migration of tracker's variables to configuration.
*/
public function testMigration() {
$this->assertIdentical(999, \Drupal::config('tracker.settings')->get('cron_index_limit'));
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
MigrateTrackerSettingsTest | Tests migration of Tracker settings to configuration. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.