Merge branch '2.7' into 2.8

* 2.7:
  [Finder] fix tests
This commit is contained in:
Nicolas Grekas 2018-04-04 15:38:31 +02:00
commit 2c7556f311
2 changed files with 13 additions and 3 deletions

View File

@ -21,15 +21,15 @@ class BsdFinderTest extends FinderTest
{
public function testSymlinksNotResolved()
{
$this->markTestSkipped('not supported on BSD finder');
$this->markTestSkipped('Symlinks are always resolved using the BsdFinderAdapter.');
}
public function testBackPathNotNormalized()
{
$this->markTestSkipped('not supported on BSD finder');
$this->markTestSkipped('Paths are always normalized using the BsdFinderAdapter.');
}
protected function buildFinder()
protected function buildFinder()
{
$adapter = new BsdFindAdapter();

View File

@ -19,6 +19,16 @@ use Symfony\Component\Finder\Finder;
*/
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 buildFinder()
{
$adapter = new GnuFindAdapter();