channel_test.go 388 B

12345678910111213141516171819202122
  1. package web
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestWebChCard(t *testing.T) {
  9. convey.Convey("ChCard", t, func(c convey.C) {
  10. var (
  11. ctx = context.Background()
  12. now = time.Now()
  13. )
  14. res, err := d.ChCard(ctx, now)
  15. convey.So(err, convey.ShouldBeNil)
  16. convey.So(res, convey.ShouldNotBeNil)
  17. convey.Printf("%+v", res)
  18. })
  19. }