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_excludes_raw_names(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);
 }
Beispiel #5
0
 private static FileGlobber GetCoreGlobber()
 {
     var g = new FileGlobber();
     foreach (var pattern in FileGlobber.StandardIncludes)
     {
         g.AddPattern(pattern);
     }
     return g;
 }