Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / block / tests / src / Functional / Update / BlockContextMappingUpdateFilledTest.php
diff --git a/web/core/modules/block/tests/src/Functional/Update/BlockContextMappingUpdateFilledTest.php b/web/core/modules/block/tests/src/Functional/Update/BlockContextMappingUpdateFilledTest.php
new file mode 100644 (file)
index 0000000..55650c5
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+
+namespace Drupal\Tests\block\Functional\Update;
+
+/**
+ * Runs BlockContextMappingUpdateTest with a dump filled with content.
+ *
+ * @group Update
+ */
+class BlockContextMappingUpdateFilledTest extends BlockContextMappingUpdateTest {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setDatabaseDumpFiles() {
+    parent::setDatabaseDumpFiles();
+    $this->databaseDumpFiles[0] = __DIR__ . '/../../../../../system/tests/fixtures/update/drupal-8.filled.standard.php.gz';
+  }
+
+}