mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
16 lines
253 B
Go
16 lines
253 B
Go
package dao
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestDaoDialogAll(t *testing.T) {
|
|
convey.Convey("DialogAll", t, func() {
|
|
_, err := d.DialogAll(context.TODO())
|
|
convey.So(err, convey.ShouldBeNil)
|
|
})
|
|
}
|