"github.com/m4rw3r/uuid" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) var _ = Describe("Roshi Channel Service", func() { var _ = Describe("Instantiation", func() { It("sanity?", func() { s, err := service.NewRoshiStreamService(util.GetEnvWithDefault("ROSHI_URL", "http://localhost:6302"), (5 * time.Second)) Expect(err).To(BeNil()) Expect(s).NotTo(BeNil()) }) }) var s service.StreamService BeforeEach(func() { s, _ = service.NewRoshiStreamService(util.GetEnvWithDefault("ROSHI_URL", "http://localhost:6302"), (5 * time.Second)) }) Context(".Add", func() { It("will add a single content item", func() { chanID, _ := uuid.V4() contentID, _ := uuid.V4() content := model.StreamItem{ ID: contentID.String(), Timestamp: time.Now(), Type: model.TypePost, StreamID: chanID.String(), }