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