1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Removed some extra assertions.

This commit is contained in:
voroks 2015-08-15 16:41:35 +08:00
parent 4fa1cb2e9c
commit 85de450fe9

View file

@ -641,13 +641,6 @@ class AutoloadGeneratorTest extends TestCase
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_functions.php', $this->vendorDir.'/autoload.php');
$this->assertFileEquals(__DIR__.'/Fixtures/autoload_real_functions_with_removed_extra.php', $this->vendorDir.'/composer/autoload_real.php');
$this->assertFileNotExists($this->vendorDir.'/composer/autoload_files.php');
include $this->vendorDir . '/autoload.php';
$this->assertFalse(function_exists('testFilesAutoloadGeneration1'));
$this->assertFalse(function_exists('testFilesAutoloadGeneration2'));
$this->assertFalse(function_exists('testFilesAutoloadGeneration3'));
$this->assertFalse(function_exists('testFilesAutoloadGeneration4'));
$this->assertFalse(function_exists('testFilesAutoloadGenerationRoot'));
}
public function testFilesAutoloadOrderByDependencies()