mirror of
https://github.com/spf13/cobra.git
synced 2024-11-15 17:58:18 -07:00
parent
99838a52fe
commit
3da102d464
@ -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.
|
||||
|
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user