Forráskód Böngészése

[Process] removed an incomplete test that cannot be fixed

Fabien Potencier 13 éve
szülő
commit
a554541cb4

+ 0 - 23
tests/Symfony/Tests/Component/Process/PhpExecutableFinderTest.php

@@ -52,27 +52,4 @@ class PhpExecutableFinderTest extends \PHPUnit_Framework_TestCase
             $this->assertEquals($current, PHP_BINDIR.DIRECTORY_SEPARATOR.'php', '::find() returns the executable php with suffixes');
         }
     }
-
-    /**
-     * tests find() with env var PHP_BINDIR
-     */
-    public function testFindWithPHP_PEAR_PHP_BIN()
-    {
-        //TODO the code for suffixes in PHP_BINDIR always catches, so the rest cant be tested
-        //maybe remove the code or move the PHP_PEAR_PHP_BIN code above
-
-        $this->markTestIncomplete();
-
-        $f = new PhpExecutableFinder();
-
-        $current = $f->find();
-
-        //not executable PHP_PEAR_PHP_BIN
-        putenv('PHP_PEAR_PHP_BIN=/not/executable/php');
-        $this->assertFalse($f->find(), '::find() returns false for not executable php');
-
-        //executable PHP_PEAR_PHP_BIN
-        putenv('PHP_PEAR_PHP_BIN='.$current);
-        $this->assertEquals($f->find(), $current, '::find() returns the executable php');
-    }
 }