package proto_test import ( "time" . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" "github.com/stv0g/cunicu/pkg/proto" ) var _ = Context("common", func() { It("time", func() { now := time.Now() protonow := proto.Time(now) Expect(protonow.Time()).To(BeTemporally("==", now)) }) })