bilibili-backup/app/service/main/videoup/dao/manager/manager_test.go

21 lines
367 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
package manager
import (
"context"
"testing"
"github.com/smartystreets/goconvey/convey"
)
func TestManagerUppers(t *testing.T) {
var (
c = context.TODO()
)
convey.Convey("Uppers", t, func(ctx convey.C) {
_, err := d.Uppers(c)
ctx.Convey("Then err should be nil.um should not be nil.", func(ctx convey.C) {
ctx.So(err, convey.ShouldBeNil)
})
})
}