File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ class BsdFinderTest extends FinderTest
21
21
{
22
22
public function testSymlinksNotResolved ()
23
23
{
24
- $ this ->markTestSkipped ('not supported on BSD finder ' );
24
+ $ this ->markTestSkipped ('Symlinks are always resolved using the BsdFinderAdapter. ' );
25
25
}
26
26
27
27
public function testBackPathNotNormalized ()
28
28
{
29
- $ this ->markTestSkipped ('not supported on BSD finder ' );
29
+ $ this ->markTestSkipped ('Paths are always normalized using the BsdFinderAdapter. ' );
30
30
}
31
31
32
- protected function buildFinder ()
32
+ protected function buildFinder ()
33
33
{
34
34
$ adapter = new BsdFindAdapter ();
35
35
Original file line number Diff line number Diff line change 19
19
*/
20
20
class GnuFinderTest extends FinderTest
21
21
{
22
+ public function testSymlinksNotResolved ()
23
+ {
24
+ $ this ->markTestSkipped ('Symlinks are always resolved using the GnuFinderAdapter. ' );
25
+ }
26
+
27
+ public function testBackPathNotNormalized ()
28
+ {
29
+ $ this ->markTestSkipped ('Paths are always normalized using the GnuFinderAdapter. ' );
30
+ }
31
+
22
32
protected function buildFinder ()
23
33
{
24
34
$ adapter = new GnuFindAdapter ();
You can’t perform that action at this time.
0 commit comments