mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
13 lines
171 B
Go
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)
|
|
}
|