MigrateSystemPerformanceTest.php in Zircon Profile 8
File
core/modules/system/src/Tests/Migrate/d6/MigrateSystemPerformanceTest.php
View source
<?php
namespace Drupal\system\Tests\Migrate\d6;
use Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase;
class MigrateSystemPerformanceTest extends MigrateDrupal6TestBase {
protected function setUp() {
parent::setUp();
$this
->executeMigration('d6_system_performance');
}
public function testSystemPerformance() {
$config = $this
->config('system.performance');
$this
->assertIdentical(FALSE, $config
->get('css.preprocess'));
$this
->assertIdentical(FALSE, $config
->get('js.preprocess'));
$this
->assertIdentical(0, $config
->get('cache.page.max_age'));
}
}