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);
 }