This file is indexed.

/usr/share/gocode/src/github.com/hashicorp/consul/lib/string_test.go is in golang-github-hashicorp-consul-dev 0.6.4~dfsg-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
package lib

import (
	"testing"
)

func TestStrContains(t *testing.T) {
	l := []string{"a", "b", "c"}
	if !StrContains(l, "b") {
		t.Fatalf("should contain")
	}
	if StrContains(l, "d") {
		t.Fatalf("should not contain")
	}
}