Files
2019-04-22 18:49:16 +08:00

15 lines
235 B
Go

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