bilibili-backup/app/admin/main/growup/dao/income/up_withdraw_test.go
2019-04-22 02:59:20 +00:00

16 lines
282 B
Go

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)
}))
}