clean up testproject files after test executes

This commit is contained in:
jharshman 2019-01-30 20:09:57 -08:00 committed by Steve Francia
parent 11aa612384
commit 984374f5b6
2 changed files with 20 additions and 0 deletions

View file

@ -16,9 +16,22 @@ func TestGoldenAddCmd(t *testing.T) {
AbsolutePath: fmt.Sprintf("%s/testproject", wd),
Legal: getLicense(),
Copyright: copyrightLine(),
// required to init
AppName: "testproject",
PkgName: "github.com/spf13/testproject",
Viper: true,
},
}
// init project first
command.Project.Create()
defer func() {
if _, err := os.Stat(command.AbsolutePath); err == nil {
os.RemoveAll(command.AbsolutePath)
}
}()
if err := command.Create(); err != nil {
t.Fatal(err)
}

View file

@ -8,6 +8,7 @@ import (
)
func TestGoldenInitCmd(t *testing.T) {
wd, _ := os.Getwd()
project := &Project{
AbsolutePath: fmt.Sprintf("%s/testproject", wd),
@ -23,6 +24,12 @@ func TestGoldenInitCmd(t *testing.T) {
t.Fatal(err)
}
defer func() {
if _, err := os.Stat(project.AbsolutePath); err == nil {
os.RemoveAll(project.AbsolutePath)
}
}()
expectedFiles := []string{"LICENSE", "main.go", "cmd/root.go"}
for _, f := range expectedFiles {
generatedFile := fmt.Sprintf("%s/%s", project.AbsolutePath, f)