distrib_test.go 235 B

1234567891011121314
  1. package dao
  2. import (
  3. "context"
  4. . "github.com/smartystreets/goconvey/convey"
  5. "testing"
  6. )
  7. func TestGetOrder(t *testing.T) {
  8. Convey("Get Order", t, func() {
  9. _, err := d.GetOrder(context.TODO(), 10001)
  10. So(err, ShouldBeNil)
  11. })
  12. }