bilibili-backup/app/admin/main/growup/dao/income/up_withdraw_test.go

16 lines
282 B
Go
Raw Normal View History

2019-04-22 10:59:20 +08:00
package income
import (
"context"
"testing"
. "github.com/smartystreets/goconvey/convey"
)
func Test_GetUpWithdraw(t *testing.T) {
Convey("GetUpWithdraw", t, WithMysql(func(d *Dao) {
_, err := d.ListUpWithdraw(context.Background(), 0, "", 10)
So(err, ShouldBeNil)
}))
}