up_test.go 356 B

1234567891011121314151617
  1. package service
  2. import (
  3. "testing"
  4. "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestServiceUpMcnUpStateCron(t *testing.T) {
  7. convey.Convey("UpMcnUpStateCron", t, func(ctx convey.C) {
  8. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  9. s.UpMcnUpStateCron()
  10. ctx.Convey("No return values", func(ctx convey.C) {
  11. })
  12. })
  13. })
  14. }