Skip to content

Commit a79dc85

Browse files
committed
test(rx): add rx-assert gomega matchers (#266)
1 parent 8f7a17d commit a79dc85

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

rx/item_test.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package rx_test
2+
3+
import (
4+
. "github.com/onsi/ginkgo/v2"
5+
. "github.com/onsi/gomega"
6+
7+
"github.com/snivilised/extendio/rx"
8+
)
9+
10+
var _ = Describe("Item", func() {
11+
Context("foo", func() {
12+
XIt("should: ...", func() {
13+
var i rx.Item[int]
14+
_ = i
15+
// Expect(item).Should(MatchCurrentGlobFilter(filter))
16+
Expect(1).To(Equal(1))
17+
})
18+
})
19+
})

0 commit comments

Comments
 (0)