scream/src/shuo-irc.com/config/load_test.go

13 lines
157 B
Go

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