cache_test.go 391 B

123456789101112131415161718
  1. package bnj
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestBnjtimeFinishKey(t *testing.T) {
  7. convey.Convey("timeFinishKey", t, func(ctx convey.C) {
  8. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  9. p1 := timeFinishKey()
  10. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  11. ctx.So(p1, convey.ShouldNotBeNil)
  12. })
  13. })
  14. })
  15. }