mirror of
https://github.com/composer/composer
synced 2025-05-10 17:12:51 +00:00
Use PHPUnit pre-conditions
See https://phpunit.de/manual/current/en/incomplete-and-skipped-tests.html#incomplete-and-skipped-tests.requires.tables.api
This commit is contained in:
parent
a32c919145
commit
96ff1c5014
1 changed files with 2 additions and 7 deletions
|
@ -179,6 +179,7 @@ class FilesystemTest extends TestCase
|
|||
|
||||
/**
|
||||
* @link https://github.com/composer/composer/issues/3157
|
||||
* @requires function symlink
|
||||
*/
|
||||
public function testUnlinkSymlinkedDirectory()
|
||||
{
|
||||
|
@ -207,6 +208,7 @@ class FilesystemTest extends TestCase
|
|||
|
||||
/**
|
||||
* @link https://github.com/composer/composer/issues/3144
|
||||
* @requires function symlink
|
||||
*/
|
||||
public function testRemoveSymlinkedDirectoryWithTrailingSlash()
|
||||
{
|
||||
|
@ -239,11 +241,4 @@ class FilesystemTest extends TestCase
|
|||
$this->assertFalse(file_exists($symlinkedTrailingSlash));
|
||||
$this->assertFalse(file_exists($symlinked));
|
||||
}
|
||||
|
||||
private function skipTestIfSymlinkPhpFunctionIsMissing()
|
||||
{
|
||||
if (!function_exists('symlink')) {
|
||||
$this->markTestSkipped('The php symlink() function for symbolic links is not available on this platform');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue