Skip to content

Commit cd85033

Browse files
committed
Remove unused data provider
1 parent 0d73939 commit cd85033

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

Tests/PathTest.php

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -439,25 +439,6 @@ public function testGetRoot(string $path, string $root)
439439
$this->assertSame($root, Path::getRoot($path));
440440
}
441441

442-
public function providePathTests(): \Generator
443-
{
444-
// relative to absolute path
445-
yield ['css/style.css', '/webmozart/symfony', '/webmozart/symfony/css/style.css'];
446-
yield ['../css/style.css', '/webmozart/symfony', '/webmozart/css/style.css'];
447-
yield ['../../css/style.css', '/webmozart/symfony', '/css/style.css'];
448-
449-
// relative to root
450-
yield ['css/style.css', '/', '/css/style.css'];
451-
yield ['css/style.css', 'C:', 'C:/css/style.css'];
452-
yield ['css/style.css', 'C:/', 'C:/css/style.css'];
453-
454-
// same sub directories in different base directories
455-
yield ['../../symfony/css/style.css', '/webmozart/css', '/symfony/css/style.css'];
456-
457-
yield ['', '/webmozart/symfony', '/webmozart/symfony'];
458-
yield ['..', '/webmozart/symfony', '/webmozart'];
459-
}
460-
461442
private static function getPathTests(): \Generator
462443
{
463444
yield from [

0 commit comments

Comments
 (0)