8000 [Finder] fix tests by xabbuh · Pull Request #26785 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Finder] fix tests
  • Loading branch information
xabbuh committed Apr 4, 2018
commit 540ea112b59c4ed2fd02a263ce77a35afdcf1b52
10 changes: 10 additions & 0 deletions src/Symfony/Component/Finder/Tests/BsdFinderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@

class BsdFinderTest extends FinderTest
{
public function testSymlinksNotResolved()
{
$this->markTestSkipped('Symlinks are always resolved using the BsdFinderAdapter.');
}

public function testBackPathNotNormalized()
{
$this->markTestSkipped('Paths are always normalized using the BsdFinderAdapter.');
}

protected function getAdapter()
{
$adapter = new BsdFindAdapter();
Expand Down
10 changes: 10 additions & 0 deletions src/Symfony/Component/Finder/Tests/GnuFinderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@

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 getAdapter()
{
$adapter = new GnuFindAdapter();
Expand Down
0