Skip to content

Commit

Permalink
WIP #113
Browse files Browse the repository at this point in the history
  • Loading branch information
bmitch committed Oct 3, 2017
1 parent 07cc445 commit 0fd64fb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/Unit/Managers/FileManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ public function it_ignores_multiple_matching_patterns_in_multiple_folders()

$fileManager = new FileManager(['php', 'inc'], ['Assets2/DeepAssets/Di*', 'Assets2/DeepAssets/De*', 'Assets2/F*']);
$this->assertCount(1, $fileManager->getPhpFiles([__DIR__ . '/../Assets2']));

$fileManager = new FileManager(['php', 'inc'], ['Assets2/*.php']);
$this->assertCount(1, $fileManager->getPhpFiles([__DIR__ . '/../Assets2']));
}

/** @test **/
Expand Down

0 comments on commit 0fd64fb

Please sign in to comment.