public function FinderTest::testBackPathNotNormalized in Database Sanitize 7
File
- vendor/
symfony/ finder/ Tests/ FinderTest.php, line 79
Class
Namespace
Symfony\Component\Finder\TestsCode
public function testBackPathNotNormalized() {
$finder = $this
->buildFinder();
$expected = $this
->toAbsolute(array(
'foo/../foo/bar.tmp',
));
$in = self::$tmpDir . '/foo/../foo/';
$this
->assertIterator($expected, $finder
->in($in)
->files()
->getIterator());
}