Ejemplo n.º 1
0
 public void readme_files_are_ignored()
 {
     NewCommand.IsBaselineFile("readme").ShouldBeTrue();
     NewCommand.IsBaselineFile("readme.txt").ShouldBeTrue();
     NewCommand.IsBaselineFile("README.txt").ShouldBeTrue();
     NewCommand.IsBaselineFile("README.markdown").ShouldBeTrue();
     NewCommand.IsBaselineFile("README.md").ShouldBeTrue();
 }
Ejemplo n.º 2
0
 public void dot_git_files_are_ignored()
 {
     NewCommand.IsBaselineFile(".git/something")
     .ShouldBeTrue();
 }
Ejemplo n.º 3
0
 public void license_file_is_ignored()
 {
     NewCommand.IsBaselineFile("license.txt")
     .ShouldBeTrue();
 }