package config import "testing" func TestLoadConfig(t *testing.T) { c, err := Load("../../../scream.ini") if err != nil { t.Fatal(err) } t.Log(c) }