dao_test.go 368 B

1234567891011121314151617181920212223242526
  1. package dao
  2. import (
  3. "flag"
  4. "path/filepath"
  5. "go-common/app/interface/main/shorturl/conf"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. var d *Dao
  9. func init() {
  10. dir, _ := filepath.Abs("../cmd/shorturl-test.toml")
  11. flag.Set("conf", dir)
  12. conf.Init()
  13. d = New(conf.Conf)
  14. }
  15. func WithDao(f func(d *Dao)) func() {
  16. return func() {
  17. Reset(func() {})
  18. f(d)
  19. }
  20. }