Skip to content

Commit 103e8a4

Browse files
Merge branch '2.7' into 2.8
* 2.7: [Finder] fix tests
2 parents 8943f2a + 1590ca2 commit 103e8a4

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

Tests/BsdFinderTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ class BsdFinderTest extends FinderTest
2121
{
2222
public function testSymlinksNotResolved()
2323
{
24-
$this->markTestSkipped('not supported on BSD finder');
24+
$this->markTestSkipped('Symlinks are always resolved using the BsdFinderAdapter.');
2525
}
2626

2727
public function testBackPathNotNormalized()
2828
{
29-
$this->markTestSkipped('not supported on BSD finder');
29+
$this->markTestSkipped('Paths are always normalized using the BsdFinderAdapter.');
3030
}
3131

32-
protected function buildFinder()
32+
protected function buildFinder()
3333
{
3434
$adapter = new BsdFindAdapter();
3535

Tests/GnuFinderTest.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@
1919
*/
2020
class GnuFinderTest extends FinderTest
2121
{
22+
public function testSymlinksNotResolved()
23+
{
24+
$this->markTestSkipped('Symlinks are always resolved using the GnuFinderAdapter.');
25+
}
26+
27+
public function testBackPathNotNormalized()
28+
{
29+
$this->markTestSkipped('Paths are always normalized using the GnuFinderAdapter.');
30+
}
31+
2232
protected function buildFinder()
2333
{
2434
$adapter = new GnuFindAdapter();

0 commit comments

Comments
 (0)