12345678910111213141516171819202122232425262728293031323334353637 |
- package seq
- import (
- "context"
- "flag"
- "path/filepath"
- "testing"
- "time"
- "go-common/app/job/main/app-wall/conf"
- . "github.com/smartystreets/goconvey/convey"
- )
- var (
- d *Dao
- )
- func ctx() context.Context {
- return context.Background()
- }
- func init() {
- dir, _ := filepath.Abs("../../cmd/app-wall-test.toml")
- flag.Set("conf", dir)
- conf.Init()
- d = New(conf.Conf)
- time.Sleep(time.Second)
- }
- func TestSeqID(t *testing.T) {
- Convey("SeqID", t, func() {
- res, err := d.SeqID(ctx())
- So(res, ShouldNotBeEmpty)
- So(err, ShouldBeNil)
- })
- }
|