Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] DirectoryScanner and AbstractFileSet improvements. #1034

Closed
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
49ab4da
Improvements
siad007 Feb 18, 2019
3ddff02
Merge branch 'master' into ImprovementDirScannerFileSet
siad007 Feb 18, 2019
fb95d77
Some small issues
siad007 Feb 18, 2019
b44d4a1
Merge remote-tracking branch 'origin/ImprovementDirScannerFileSet' in…
siad007 Feb 18, 2019
0bd12a1
Fixed tests
siad007 Feb 18, 2019
f06f0f4
Fixed test
siad007 Feb 18, 2019
ea07056
Fixes some more tests
siad007 Feb 18, 2019
98f861d
Another test fix
siad007 Feb 18, 2019
a4a2beb
fix
siad007 Feb 18, 2019
b066924
more more more
siad007 Feb 18, 2019
7207654
updated test
siad007 Feb 18, 2019
1bf0f1e
Fixed test
siad007 Feb 23, 2019
936010c
Fixed path
siad007 Feb 23, 2019
c001c8c
Fixed exception msg assertion
siad007 Feb 23, 2019
7fb8876
Regex fix
siad007 Feb 23, 2019
20bfaaa
regex in message
siad007 Feb 23, 2019
c7e313e
use PhingFile
siad007 Feb 24, 2019
bc10c63
Added phingfile
siad007 Feb 24, 2019
77c6fff
PhingFile added
siad007 Feb 24, 2019
ac8af9e
Fixed PhingFile
siad007 Feb 24, 2019
71d4ad8
small fix
siad007 Feb 24, 2019
3a66dcd
small fix
siad007 Feb 24, 2019
7349cd6
Small change
siad007 Feb 24, 2019
27f8144
dest should not be equal src
siad007 Feb 24, 2019
8812421
dest to string
siad007 Feb 24, 2019
177448e
Added basedir to test
siad007 Feb 24, 2019
f860532
Merge branch 'master' into ImprovementDirScannerFileSet
siad007 Mar 24, 2019
9983f20
Merge branch 'master' into ImprovementDirScannerFileSet
siad007 Mar 24, 2019
30d8a2d
Merge branch 'master' into ImprovementDirScannerFileSet
siad007 Apr 19, 2019
d0c9906
Merge branch 'master' into ImprovementDirScannerFileSet
siad007 Apr 19, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed test
siad007 committed Feb 18, 2019
commit f06f0f408fafbe471621104c771a74da0b876055
2 changes: 1 addition & 1 deletion test/classes/phing/util/DirectoryScannerTest.php
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ public function tearDown(): void
public function testErrorOnMissingDir()
{
$ds = new DirectoryScanner();
$ds->setBasedir($this->_basedir . '/THIS_DOES_NOT_EXIST');
$ds->setBasedir(new PhingFile($this->_basedir . '/THIS_DOES_NOT_EXIST'));
$ds->setErrorOnMissingDir(true);
$ds->scan();
}