8000 [Finder] fix tests · symfony/symfony@540ea11 · GitHub
[go: up one dir, main page]

Skip to content

Commit 540ea11

Browse files
committed
[Finder] fix tests
1 parent 7c4676a commit 540ea11

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/Symfony/Component/Finder/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();

src/Symfony/Component/Finder/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)
0