Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / tests / configPulltest.php
diff --git a/vendor/drush/drush/tests/configPulltest.php b/vendor/drush/drush/tests/configPulltest.php
deleted file mode 100644 (file)
index ed28f13..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-namespace Unish;
-
-/**
- * Tests for config-pull command. Sets up two Drupal sites.
- * @group commands
- * @group slow
- * @group config
- */
-class ConfigPullCase extends CommandUnishTestCase {
-
-  function setUp() {
-    if (UNISH_DRUPAL_MAJOR_VERSION < 8) {
-      $this->markTestSkipped('Config only available on D8+.');
-    }
-
-    $this->setUpDrupal(2, TRUE);
-  }
-
-  /*
-   * Make sure a change propogates using config-pull+config-import.
-   */
-  function testConfigPull() {
-    list($source, $destination) = array_keys($this->getSites());
-    $source = "@$source";
-    $destination = "@$destination";
-    $this->drush('config-set', array('system.site', 'name', 'testConfigPull'), array('yes' => NULL), $source);
-    $this->drush('config-pull', array($source, $destination), array());
-    $this->drush('config-import', array(), array(), $destination);
-    $this->drush('config-get', array('system.site', 'name'), array(), $source);
-    $this->assertEquals("'system.site:name': testConfigPull", $this->getOutput(), 'Config was successfully pulled.');
-  }
-}