cache_test.go 792 B

1234567891011121314151617181920212223242526272829303132333435
  1. package kfc
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestKfckfcKey(t *testing.T) {
  7. convey.Convey("kfcKey", t, func(convCtx convey.C) {
  8. var (
  9. id = int64(3)
  10. )
  11. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  12. p1 := kfcKey(id)
  13. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  14. convCtx.So(p1, convey.ShouldNotBeNil)
  15. })
  16. })
  17. })
  18. }
  19. func TestKfckfcCodeKey(t *testing.T) {
  20. convey.Convey("kfcCodeKey", t, func(convCtx convey.C) {
  21. var (
  22. code = "201812041201"
  23. )
  24. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  25. p1 := kfcCodeKey(code)
  26. convCtx.Convey("Then p1 should not be nil.", func(convCtx convey.C) {
  27. convCtx.So(p1, convey.ShouldNotBeNil)
  28. })
  29. })
  30. })
  31. }