achievements_test.go 512 B

1234567891011121314151617181920212223
  1. package like
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestLikeRawActLikeAchieves(t *testing.T) {
  8. convey.Convey("RawActLikeAchieves", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. sid = int64(10805)
  12. )
  13. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  14. _, err := d.RawActLikeAchieves(c, sid)
  15. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  16. ctx.So(err, convey.ShouldBeNil)
  17. })
  18. })
  19. })
  20. }