super-graph/config/config_test.go

14 lines
183 B
Go
Raw Normal View History

package config
2019-10-31 06:14:51 +01:00
import (
"testing"
)
func TestInitConf(t *testing.T) {
_, err := NewConfig("../examples/rails-app/config/supergraph")
2019-10-31 06:14:51 +01:00
if err != nil {
t.Fatal(err.Error())
}
}