Skip to content

Commit 170e051

Browse files
committed
[Finder] fix tests
1 parent 64c6348 commit 170e051

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)