Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package feed
import (
"context"
"testing"
"time"
. "github.com/smartystreets/goconvey/convey"
)
func Test_UpperFeed(t *testing.T) {
Convey("should get UpperFeed", t, func() {
uf, _ := s.UpperFeed(context.Background(), 1, 2, 3, 4, 5, time.Now())
So(uf, ShouldNotBeNil)
})
}