summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/gomega/matchers/be_nil_matcher_test.go
blob: c35aa3d7c78b39295fbcff93bddf71d7c8c9c4cf (plain)
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
package matchers_test

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

var _ = Describe("BeNil", func() {
	It("should succeed when passed nil", func() {
		Expect(nil).Should(BeNil())
	})

	It("should succeed when passed a typed nil", func() {
		var a []int
		Expect(a).Should(BeNil())
	})

	It("should succeed when passing nil pointer", func() {
		var f *struct{}
		Expect(f).Should(BeNil())
	})

	It("should not succeed when not passed nil", func() {
		Expect(0).ShouldNot(BeNil())
		Expect(false).ShouldNot(BeNil())
		Expect("").ShouldNot(BeNil())
	})
})