sk-matrix-project/backend/golang/matrix-dnslog-service/pkg/config/generate_test.go

17 lines
213 B
Go
Raw Normal View History

2023-03-24 15:46:54 +08:00
package config
import (
"os"
"testing"
)
func TestGenerateConfig(t *testing.T) {
path := "./config.toml"
_, err := os.Stat(path)
if err != os.ErrNotExist {
_ = os.Remove(path)
}
_ = GenerateConfig()
}