go-common/app/admin/main/videoup/dao/archive/hbase_test.go

14 lines
226 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package archive
import (
"context"
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestDao_WeightLog(t *testing.T) {
Convey("WeightLog", t, WithDao(func(d *Dao) {
d.WeightLog(context.TODO(), 4575)
}))
}