File: is_helper_test.go

package info (click to toggle)
golang-github-matryer-is 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 204 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 111 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
// +build go1.7

package is

func helper(is *I, helper bool) {
	if helper {
		is.Helper()
	}
	is.True(false)
}