public function FinderTest::testInWithGlobBrace in Database Sanitize 7
File
- vendor/
symfony/ finder/ Tests/ FinderTest.php, line 317
Class
Namespace
Symfony\Component\Finder\TestsCode
public function testInWithGlobBrace() {
$finder = $this
->buildFinder();
$finder
->in(array(
__DIR__ . '/Fixtures/{A,copy/A}/B/C',
))
->getIterator();
$this
->assertIterator($this
->toAbsoluteFixtures(array(
'A/B/C/abc.dat',
'copy/A/B/C/abc.dat.copy',
)), $finder);
}