tab_test.go 250 B

12345678910111213141516
  1. package feed
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. func Test_Menus(t *testing.T) {
  9. Convey(t.Name(), t, func() {
  10. m := s.Menus(context.Background(), 1, 2, time.Now())
  11. So(m, ShouldNotBeNil)
  12. })
  13. }