V2bX/conf/conf_test.go
2023-05-22 11:20:09 +08:00

9 lines
145 B
Go

package conf
import "testing"
func TestConf_LoadFromPath(t *testing.T) {
c := New()
t.Log(c.LoadFromPath("../example/config.yml.example"))
}