[Finder] fix tests

This commit is contained in:
Christian Flothmann 2018-04-04 08:34:32 +02:00
parent 7c4676a03f
commit 540ea112b5
2 changed files with 20 additions and 0 deletions

View File

@ -15,6 +15,16 @@ use Symfony\Component\Finder\Adapter\BsdFindAdapter;
class BsdFinderTest extends FinderTest
{
public function testSymlinksNotResolved()
{
$this->markTestSkipped('Symlinks are always resolved using the BsdFinderAdapter.');
}
public function testBackPathNotNormalized()
{
$this->markTestSkipped('Paths are always normalized using the BsdFinderAdapter.');
}
protected function getAdapter()
{
$adapter = new BsdFindAdapter();

View File

@ -15,6 +15,16 @@ use Symfony\Component\Finder\Adapter\GnuFindAdapter;
class GnuFinderTest extends FinderTest
{
public function testSymlinksNotResolved()
{
$this->markTestSkipped('Symlinks are always resolved using the GnuFinderAdapter.');
}
public function testBackPathNotNormalized()
{
$this->markTestSkipped('Paths are always normalized using the GnuFinderAdapter.');
}
protected function getAdapter()
{
$adapter = new GnuFindAdapter();