X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fdrush%2Fdrush%2Ftests%2FconfigPulltest.php;fp=vendor%2Fdrush%2Fdrush%2Ftests%2FconfigPulltest.php;h=0000000000000000000000000000000000000000;hp=ed28f13ad2a732f71d074f69100cb349b9c3bc30;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/drush/drush/tests/configPulltest.php b/vendor/drush/drush/tests/configPulltest.php deleted file mode 100644 index ed28f13ad..000000000 --- a/vendor/drush/drush/tests/configPulltest.php +++ /dev/null @@ -1,34 +0,0 @@ -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.'); - } -}