hbase_test.go 226 B

12345678910111213
  1. package archive
  2. import (
  3. "context"
  4. . "github.com/smartystreets/goconvey/convey"
  5. "testing"
  6. )
  7. func TestDao_WeightLog(t *testing.T) {
  8. Convey("WeightLog", t, WithDao(func(d *Dao) {
  9. d.WeightLog(context.TODO(), 4575)
  10. }))
  11. }