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