db backup prior to drupal security update
[yaffs-website] / web / core / modules / views / src / Tests / Update / EntityViewsDataUpdateFilledTest.php
1 <?php
2
3 namespace Drupal\views\Tests\Update;
4
5 /**
6  * Runs EntityViewsDataUpdateTest with a dump filled with content.
7  *
8  * @group Update
9  */
10 class EntityViewsDataUpdateFilledTest extends EntityViewsDataUpdateTest {
11
12   /**
13    * {@inheritdoc}
14    */
15   protected function setDatabaseDumpFiles() {
16     parent::setDatabaseDumpFiles();
17     $this->databaseDumpFiles[0] = __DIR__ . '/../../../../system/tests/fixtures/update/drupal-8.filled.standard.php.gz';
18   }
19
20 }