File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
src/Symfony/Component/Finder/Tests Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 15
15
16
16
class BsdFinderTest extends FinderTest
17
17
{
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
+
18
28
protected function getAdapter ()
19
29
{
20
30
$ adapter = new BsdFindAdapter ();
Original file line number Diff line number Diff line change 15
15
16
16
class GnuFinderTest extends FinderTest
17
17
{
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
+
18
28
protected function getAdapter ()
19
29
{
20
30
$ adapter = new GnuFindAdapter ();
You can’t perform that action at this time.
0 commit comments