Skip to content

Commit

Permalink
Do not skip user list command test because of stty
Browse files Browse the repository at this point in the history
  • Loading branch information
bocharsky-bw committed Jul 12, 2021
1 parent 4d39a62 commit 370f9f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/Command/AbstractCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@

abstract class AbstractCommandTest extends KernelTestCase
{
protected function setUp(): void
{
if ('Windows' === \PHP_OS_FAMILY) {
$this->markTestSkipped('`stty` is required to test this command.');
}
}

/**
* This helper method abstracts the boilerplate code needed to test the
* execution of a command.
Expand Down
7 changes: 7 additions & 0 deletions tests/Command/AddUserCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ class AddUserCommandTest extends AbstractCommandTest
'full-name' => 'Chuck Norris',
];

protected function setUp(): void
{
if ('Windows' === \PHP_OS_FAMILY) {
$this->markTestSkipped('`stty` is required to test this command.');
}
}

/**
* @dataProvider isAdminDataProvider
*
Expand Down

0 comments on commit 370f9f0

Please sign in to comment.