public function FinderTest::testExclude in Database Sanitize 7
File
- vendor/
symfony/ finder/ Tests/ FinderTest.php, line 180
Class
Namespace
Symfony\Component\Finder\TestsCode
public function testExclude() {
$finder = $this
->buildFinder();
$this
->assertSame($finder, $finder
->exclude('foo'));
$this
->assertIterator($this
->toAbsolute(array(
'test.php',
'test.py',
'toto',
'foo bar',
)), $finder
->in(self::$tmpDir)
->getIterator());
}