mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Fix classmap test on windows
This commit is contained in:
parent
2d8251b7ad
commit
f0f932fca4
1 changed files with 2 additions and 1 deletions
|
@ -223,12 +223,13 @@ class ClassMapGeneratorTest extends TestCase
|
|||
$tempDir = self::getUniqueTmpDirectory();
|
||||
|
||||
$resultFile = $tempDir . '/result.txt';
|
||||
$fileInDirectory = $tempDir . '/TestClass.php';
|
||||
$fileInDirectory = $tempDir . DIRECTORY_SEPARATOR . 'TestClass.php';
|
||||
|
||||
file_put_contents($fileInDirectory, "<?php class TestClass {} ?>");
|
||||
|
||||
ClassMapGenerator::dump(array($tempDir), $resultFile);
|
||||
|
||||
$fileInDirectory = str_replace('\\', '\\\\', $fileInDirectory);
|
||||
$this->assertEquals("<?php return array (\n 'TestClass' => '$fileInDirectory',\n);", file_get_contents($resultFile));
|
||||
|
||||
$fs = new Filesystem();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue