bilibili-backup/app/service/main/videoup/dao/archive/netsafe_test.go
2019-04-22 02:59:20 +00:00

18 lines
303 B
Go

package archive
import (
"context"
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestDao_AddNetSafeMd5(t *testing.T) {
var (
c = context.Background()
)
Convey("AddNetSafeMd5", t, func(ctx C) {
_, err := d.AddNetSafeMd5(c, 23333, "ssadasdasdasd")
So(err, ShouldBeNil)
})
}