2020-03-28 12:02:59 +08:00

13 lines
171 B
Go

package helper
import "testing"
func TestConfig(t *testing.T) {
config, err := GetConfig("../config.toml")
if err != nil {
t.Error(err)
return
}
t.Log(config)
}