소스 검색

Removed some extra assertions.

voroks 10 년 전
부모
커밋
85de450fe9
1개의 변경된 파일0개의 추가작업 그리고 7개의 파일을 삭제
  1. 0 7
      tests/Composer/Test/Autoload/AutoloadGeneratorTest.php

+ 0 - 7
tests/Composer/Test/Autoload/AutoloadGeneratorTest.php

@@ -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()