Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / tests / SiteSetTest.php
diff --git a/vendor/drush/drush/tests/SiteSetTest.php b/vendor/drush/drush/tests/SiteSetTest.php
deleted file mode 100644 (file)
index 3f6f6c1..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-<?php
-
-namespace Unish;
-
-/**
- * @group base
- * @group slow
- */
-class SiteSetCommandCase extends CommandUnishTestCase
-{
-
-    /**
-     * Test functionality of site set.
-     */
-    public function testSiteSet()
-    {
-        if ($this->isWindows()) {
-            $this->markTestSkipped('Site-set not currently available on Windows.');
-        }
-        $sites = $this->setUpDrupal(2, true);
-        $site_aliases = $this->getAliases();
-        $this->assertCount(2, $site_aliases);
-
-        // Test changing aliases.
-        foreach ($site_aliases as $site_alias) {
-            $this->drush('site:set', [$site_alias]);
-            $output = $this->getErrorOutput();
-            $this->assertEquals('[success] Site set to ' . $site_alias, $output);
-        }
-
-        // Test setting the site to the special @none alias.
-        $this->drush('site:set', ['@none']);
-        $output = $this->getErrorOutput();
-        $this->assertEquals('[success] Site unset.', $output);
-
-        // Alternative to '@none'.
-        $this->drush('site:set', ['']);
-        $output = $this->getErrorOutput();
-        $this->assertEquals('[success] Site unset.', $output);
-
-        // @todo Fix this toggling.
-        $this->markTestSkipped('Inexplicably fails on TravisCI but not locally.');
-
-        // Toggle between the previous set alias and back again.
-        $this->drush('site:set', ['-']);
-        $output = $this->getErrorOutput();
-        $this->assertEquals('[success] Site set to ' . $site_aliases[0], $output);
-        $this->drush('site:set', ['-']);
-        $output = $this->getErrorOutput();
-        $this->assertEquals('[success] Site set to ' . $site_aliases[1], $output);
-    }
-}