8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da67f5d commit 30814d3Copy full SHA for 30814d3
src/Symfony/Component/Finder/Tests/FinderTest.php
@@ -333,6 +333,17 @@ public function testInWithNonDirectoryGlob($adapter)
333
$finder->in(__DIR__.'/Fixtures/A/a*');
334
}
335
336
+ /**
337
+ * @dataProvider getAdaptersTestData
338
+ */
339
+ public function testInWithGlobBrace($adapter)
340
+ {
341
+ $finder = $this->buildFinder($adapter);
342
+ $finder->in(array(__DIR__.'/Fixtures/{A,copy/A}/B/C'))->getIterator();
343
+
344
+ $this->assertIterator($this->toAbsoluteFixtures(array('A/B/C/abc.dat', 'copy/A/B/C/abc.dat.copy')), $finder);
345
+ }
346
347
/**
348
* @dataProvider getAdaptersTestData
349
*/
0 commit comments