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

Skip to content

[Finder] fix tests #26785

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 4, 2018
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