V2bX/conf/conf_test.go

9 lines
145 B
Go
Raw Normal View History

2023-04-07 01:11:56 -04:00
package conf
2023-05-21 23:20:09 -04:00
import "testing"
func TestConf_LoadFromPath(t *testing.T) {
c := New()
t.Log(c.LoadFromPath("../example/config.yml.example"))
}