You are here

table-cache-max-age.php in Drupal 8

Test fixture.

File

core/modules/views/tests/fixtures/update/table-cache-max-age.php
View source
<?php

/**
 * @file
 * Test fixture.
 */
use Drupal\Core\Database\Database;
use Drupal\Core\Serialization\Yaml;
$connection = Database::getConnection();
$connection
  ->insert('config')
  ->fields([
  'collection' => '',
  'name' => 'views.view.test_table_max_age',
  'data' => serialize(Yaml::decode(file_get_contents('core/modules/views/tests/fixtures/update/views.view.test_table_max_age.yml'))),
])
  ->execute();