Files
crawlab/backend/config/config_test.go
2019-09-03 15:24:26 +08:00

17 lines
271 B
Go

package config
import (
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestInitConfig(t *testing.T) {
Convey("Test InitConfig func", t, func() {
x := InitConfig("")
Convey("The value should be nil", func() {
So(x, ShouldEqual, nil)
})
})
}