bilibili-backup/app/service/main/ugcpay/conf/conf_test.go
2019-04-22 02:59:20 +00:00

17 lines
230 B
Go

package conf
import (
"flag"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func TestConf(t *testing.T) {
Convey("", t, func() {
flag.Set("conf", "../cmd/test.toml")
err := Init()
So(err, ShouldBeNil)
})
}