Skip to content

Commit

Permalink
Remove duplicate test.
Browse files Browse the repository at this point in the history
  • Loading branch information
weitzman committed Aug 27, 2013
1 parent 2816c98 commit 9fde03a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/siteSetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,12 @@ function testSiteSet() {
$this->drush('site-set', array($alias));
$expected = 'Site set to ' . $alias;
$output = $this->getOutput();

$this->assertEquals($expected, $output);

$this->drush('site-set', array());
$output = $this->getOutput();
$this->assertEquals('Site set to @none', $output);

$this->drush('ev', array("drush_invoke('site-set', '$alias'); print drush_sitealias_site_get();"));
$output = $this->getOutput();
$this->assertEquals("Site set to $alias
$alias", $output);

$this->drush('ev', array("drush_invoke('site-set', '$alias'); drush_invoke('site-set', '@none'); drush_invoke('site-set', '-'); print drush_sitealias_site_get();"));
$output = $this->getOutput();
$this->assertEquals("Site set to $alias
Expand Down

0 comments on commit 9fde03a

Please sign in to comment.