databus_test.go 507 B

123456789101112131415161718192021222324
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoPubLabour(t *testing.T) {
  8. convey.Convey("PubLabour", t, func(convCtx convey.C) {
  9. var (
  10. c = context.Background()
  11. aid = int64(0)
  12. msg = interface{}(0)
  13. )
  14. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  15. err := d.PubLabour(c, aid, msg)
  16. convCtx.Convey("Then err should be nil.", func(convCtx convey.C) {
  17. convCtx.So(err, convey.ShouldBeNil)
  18. })
  19. })
  20. })
  21. }