cmd: Fix golden tests if user has config at $HOME

Fix #505
This commit is contained in:
Albert Nigmatzianov 2017-07-30 17:18:17 +02:00 committed by Anthony Fok
parent 99838a52fe
commit 3da102d464
2 changed files with 10 additions and 2 deletions

View file

@ -23,7 +23,11 @@ func TestGoldenAddCmd(t *testing.T) {
initializeProject(project)
defer os.RemoveAll(project.AbsPath())
viper.Set("year", 2017) // For reproducible builds.
viper.Set("author", "NAME HERE <EMAIL ADDRESS>")
viper.Set("license", "apache")
viper.Set("year", 2017)
defer viper.Set("author", nil)
defer viper.Set("license", nil)
defer viper.Set("year", nil)
// Then add the "test" command.

View file

@ -19,7 +19,11 @@ func TestGoldenInitCmd(t *testing.T) {
project := NewProject(projectName)
defer os.RemoveAll(project.AbsPath())
viper.Set("year", 2017) // For reproducible builds.
viper.Set("author", "NAME HERE <EMAIL ADDRESS>")
viper.Set("license", "apache")
viper.Set("year", 2017)
defer viper.Set("author", nil)
defer viper.Set("license", nil)
defer viper.Set("year", nil)
os.Args = []string{"cobra", "init", projectName}