Skip to content

Commit 1590ca2

Browse files
minor #26785 [Finder] fix tests (xabbuh)
This PR was merged into the 2.7 branch. Discussion ---------- [Finder] fix tests | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | Commits ------- 170e051 [Finder] fix tests
2 parents 64c6348 + 170e051 commit 1590ca2

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

Tests/BsdFinderTest.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@
1515

1616
class BsdFinderTest extends FinderTest
1717
{
18+
public function testSymlinksNotResolved()
19+
{
20+
$this->markTestSkipped('Symlinks are always resolved using the BsdFinderAdapter.');
21+
}
22+
23+
public function testBackPathNotNormalized()
24+
{
25+
$this->markTestSkipped('Paths are always normalized using the BsdFinderAdapter.');
26+
}
27+
1828
protected function getAdapter()
1929
{
2030
$adapter = new BsdFindAdapter();

Tests/GnuFinderTest.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@
1515

1616
class GnuFinderTest extends FinderTest
1717
{
18+
public function testSymlinksNotResolved()
19+
{
20+
$this->markTestSkipped('Symlinks are always resolved using the GnuFinderAdapter.');
21+
}
22+
23+
public function testBackPathNotNormalized()
24+
{
25+
$this->markTestSkipped('Paths are always normalized using the GnuFinderAdapter.');
26+
}
27+
1828
protected function getAdapter()
1929
{
2030
$adapter = new GnuFindAdapter();

0 commit comments

Comments
 (0)