This file is indexed.

/usr/share/gocode/src/github.com/mitchellh/iochan/iochan_test.go is in golang-github-mitchellh-iochan-dev 0.0~git20150529.0.87b45ff-1.

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
16
17
18
19
20
21
22
23
24
package iochan

import (
	"bytes"
	"reflect"
	"testing"
)

func TestDelimReader(t *testing.T) {
	buf := new(bytes.Buffer)
	buf.WriteString("foo\nbar\nbaz")

	ch := DelimReader(buf, '\n')

	results := make([]string, 0, 3)
	expected := []string{"foo\n", "bar\n", "baz"}
	for v := range ch {
		results = append(results, v)
	}

	if !reflect.DeepEqual(results, expected) {
		t.Fatalf("unexpected results: %#v", results)
	}
}