public bool it_excludes_raw_names(string pattern, string file) { var sut = new FileGlobber(); sut.AddPattern("*"); sut.IgnorePattern(pattern); return sut.ShouldCheckFile(file); }
public bool case_does_not_matter_with_ignores(string pattern, string file) { var sut = new FileGlobber(); sut.AddPattern("*"); sut.IgnorePattern(pattern); return !sut.ShouldCheckFile(file); }
public bool it_includes_globs_using_the_asterik(string pattern, string file) { var sut = new FileGlobber(); sut.AddPattern(pattern); return sut.ShouldCheckFile(file); }
public bool case_does_not_matter(string pattern, string file) { var sut = new FileGlobber(); sut.AddPattern(pattern); return sut.ShouldCheckFile(file); }
private static void StandardIgnores(FileGlobber g) { foreach (var pattern in FileGlobber.StandardIgnores) { g.IgnorePattern(pattern); } }
private static FileGlobber GetCoreGlobber() { var g = new FileGlobber(); foreach (var pattern in FileGlobber.StandardIncludes) { g.AddPattern(pattern); } return g; }
public FluentConfig() { this.globber = new FileGlobber(); this.launchers = new List<ILaunchableConfiguration>(); }
public ProjectScanConfigExpression() { Globber = new FileGlobber(); }