123456789101112131415161718192021222324252627282930313233343536 |
- package databus
- import (
- "context"
- "flag"
- "path/filepath"
- "testing"
- "time"
- "go-common/app/interface/main/app-show/conf"
- . "github.com/smartystreets/goconvey/convey"
- )
- var (
- d *Dao
- )
- func ctx() context.Context {
- return context.Background()
- }
- func init() {
- dir, _ := filepath.Abs("../../cmd/app-show-test.toml")
- flag.Set("conf", dir)
- conf.Init()
- d = New(conf.Conf)
- time.Sleep(time.Second)
- }
- func TestPub(t *testing.T) {
- Convey("Pub", t, func() {
- err := d.Pub(ctx(), "", "", 1, 1)
- So(err, ShouldBeNil)
- })
- }
|