bilibili-backup/app/service/main/ugcpay/conf/conf_test.go

17 lines
230 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
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)
})
}