Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / tests / src / Kernel / Installer / InstallerMissingDependenciesTest.php
diff --git a/web/core/modules/system/tests/src/Kernel/Installer/InstallerMissingDependenciesTest.php b/web/core/modules/system/tests/src/Kernel/Installer/InstallerMissingDependenciesTest.php
deleted file mode 100644 (file)
index 052c0af..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-namespace Drupal\Tests\system\Kernel\Installer;
-
-use Drupal\KernelTests\KernelTestBase;
-
-/**
- * Tests that we handle the absence of a module dependency during install.
- *
- * @group Installer
- */
-class InstallerMissingDependenciesTest extends KernelTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public static $modules = ['system'];
-
-  /**
-   * Verifies that the exception message in the profile step is correct.
-   */
-  public function testSetUpWithMissingDependencies() {
-    // Prime the drupal_get_filename() static cache with the location of the
-    // testing profile as it is not the currently active profile and we don't
-    // yet have any cached way to retrieve its location.
-    // @todo Remove as part of https://www.drupal.org/node/2186491
-    drupal_get_filename('profile', 'testing_missing_dependencies', 'core/profiles/testing_missing_dependencies/testing_missing_dependencies.info.yml');
-
-    $info = drupal_verify_profile([
-      'parameters' => ['profile' => 'testing_missing_dependencies'],
-      'profile_info' => install_profile_info('testing_missing_dependencies'),
-    ]);
-
-    $message = $info['required_modules']['description']->render();
-    $this->assertContains('Missing_module1', $message);
-    $this->assertContains('Missing_module2', $message);
-  }
-
-}