File: pointer_test.go

package info (click to toggle)
golang-gomega 1.36.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,984 kB
  • sloc: xml: 277; javascript: 59; makefile: 3
file content (33 lines) | stat: -rw-r--r-- 714 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package gstruct_test

import (
	. "github.com/onsi/ginkgo/v2"
	. "github.com/onsi/gomega"
	. "github.com/onsi/gomega/gstruct"
)

var _ = Describe("PointTo", func() {
	It("should fail when passed nil", func() {
		var p *struct{}
		Expect(p).Should(BeNil())
	})

	It("should succeed when passed non-nil pointer", func() {
		var s struct{}
		Expect(&s).Should(PointTo(Ignore()))
	})

	It("should unwrap the pointee value", func() {
		i := 1
		Expect(&i).Should(PointTo(Equal(1)))
		Expect(&i).ShouldNot(PointTo(Equal(2)))
	})

	It("should work with nested pointers", func() {
		i := 1
		ip := &i
		ipp := &ip
		Expect(ipp).Should(PointTo(PointTo(Equal(1))))
		Expect(ipp).ShouldNot(PointTo(PointTo(Equal(2))))
	})
})