bilibili-backup/app/service/openplatform/ticket-sales/dao/distrib_test.go

15 lines
235 B
Go
Raw Permalink Normal View History

2019-04-22 10:59:20 +08:00
package dao
import (
"context"
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestGetOrder(t *testing.T) {
Convey("Get Order", t, func() {
_, err := d.GetOrder(context.TODO(), 10001)
So(err, ShouldBeNil)
})
}