style_cache_test.go 451 B

12345678910111213141516171819
  1. package pgc
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestDaoGetLabelCache(t *testing.T) {
  7. convey.Convey("GetLabelCache", t, func(cx convey.C) {
  8. cx.Convey("When everything goes positive", func(cx convey.C) {
  9. res, err := d.GetLabelCache(ctx)
  10. cx.Convey("Then err should be nil.res should not be nil.", func(cx convey.C) {
  11. cx.So(err, convey.ShouldBeNil)
  12. cx.So(res, convey.ShouldNotBeNil)
  13. })
  14. })
  15. })
  16. }