dynamic_test.go 494 B

1234567891011121314151617181920212223242526272829
  1. package dynamic
  2. import (
  3. "context"
  4. "flag"
  5. "path/filepath"
  6. "testing"
  7. . "github.com/smartystreets/goconvey/convey"
  8. "go-common/app/interface/main/app-show/conf"
  9. )
  10. var (
  11. d *Dao
  12. )
  13. func init() {
  14. dir, _ := filepath.Abs("../../cmd/app-show-test.toml")
  15. flag.Set("conf", dir)
  16. conf.Init()
  17. d = New(conf.Conf)
  18. }
  19. func Test_RegionDynamic(t *testing.T) {
  20. Convey("should get RegionDynamic", t, func() {
  21. _, _, err := d.RegionDynamic(context.Background(), 1, 2, 3)
  22. So(err, ShouldBeNil)
  23. })
  24. }