You are here

public function DevelDrushTest::testServices in Devel 8

Test devel:services command.

File

tests/src/Unish/DevelDrushTest.php, line 24

Class

DevelDrushTest
@group devel @group commands

Namespace

Drupal\Tests\devel\Unish

Code

public function testServices() {
  $this
    ->drush('devel:services');
  $output = $this
    ->getOutput();
  $this
    ->assertContains('account_switcher', $output);
}