瀏覽代碼

AutoloadGeneratorTest::testMainPackageAutoloadingWithTargetDir() - Remove PSR-4 from the package in target-dir test, since it is incompatible with target-dir.

Andreas Hennings 11 年之前
父節點
當前提交
084c11ef51
共有 1 個文件被更改,包括 0 次插入4 次删除
  1. 0 4
      tests/Composer/Test/Autoload/AutoloadGeneratorTest.php

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

@@ -198,10 +198,6 @@ class AutoloadGeneratorTest extends TestCase
         $package = new Package('a', '1.0', '1.0');
         $package->setAutoload(array(
             'psr-0' => array('Main\\Foo' => '', 'Main\\Bar' => ''),
-            'psr-4' => array(
-                'Acme\Fruit\\' => 'src-fruit/',
-                'Acme\Cake\\' => array('src-cake/', 'lib-cake/'),
-            ),
             'classmap' => array('Main/Foo/src', 'lib'),
             'files' => array('foo.php', 'Main/Foo/bar.php'),
         ));