mirror of
https://github.com/spf13/cobra.git
synced 2024-11-15 17:58:18 -07:00
cmd: Small fixes
This commit is contained in:
parent
d7ba19510d
commit
99838a52fe
@ -22,9 +22,9 @@ func TestGoldenAddCmd(t *testing.T) {
|
|||||||
// Initialize the project at first.
|
// Initialize the project at first.
|
||||||
initializeProject(project)
|
initializeProject(project)
|
||||||
defer os.RemoveAll(project.AbsPath())
|
defer os.RemoveAll(project.AbsPath())
|
||||||
defer viper.Set("year", nil)
|
|
||||||
|
|
||||||
viper.Set("year", 2017) // For reproducible builds
|
viper.Set("year", 2017) // For reproducible builds.
|
||||||
|
defer viper.Set("year", nil)
|
||||||
|
|
||||||
// Then add the "test" command.
|
// Then add the "test" command.
|
||||||
cmdName := "test"
|
cmdName := "test"
|
||||||
|
@ -18,9 +18,9 @@ func TestGoldenInitCmd(t *testing.T) {
|
|||||||
projectName := "github.com/spf13/testproject"
|
projectName := "github.com/spf13/testproject"
|
||||||
project := NewProject(projectName)
|
project := NewProject(projectName)
|
||||||
defer os.RemoveAll(project.AbsPath())
|
defer os.RemoveAll(project.AbsPath())
|
||||||
defer viper.Set("year", nil)
|
|
||||||
|
|
||||||
viper.Set("year", 2017) // For reproducible builds
|
viper.Set("year", 2017) // For reproducible builds.
|
||||||
|
defer viper.Set("year", nil)
|
||||||
|
|
||||||
os.Args = []string{"cobra", "init", projectName}
|
os.Args = []string{"cobra", "init", projectName}
|
||||||
if err := rootCmd.Execute(); err != nil {
|
if err := rootCmd.Execute(); err != nil {
|
||||||
|
@ -78,7 +78,7 @@ func getLicense() License {
|
|||||||
func copyrightLine() string {
|
func copyrightLine() string {
|
||||||
author := viper.GetString("author")
|
author := viper.GetString("author")
|
||||||
|
|
||||||
year := viper.GetString("year") // For reproducible builds
|
year := viper.GetString("year") // For tests.
|
||||||
if year == "" {
|
if year == "" {
|
||||||
year = time.Now().Format("2006")
|
year = time.Now().Format("2006")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user