This file is indexed.

/usr/share/gocode/src/github.com/twstrike/otr3/sexp/symbol_test.go is in golang-github-twstrike-otr3-dev 0.0~git20161015.0.744856d-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
package sexp

import "testing"

func Test_Symbol_First_generatesAPanic(t *testing.T) {
	defer checkForPanic(t, "not valid to call First on a Symbol")
	Symbol("ABCD").First()
}

func Test_Symbol_Second_generatesAPanic(t *testing.T) {
	defer checkForPanic(t, "not valid to call Second on a Symbol")
	Symbol("ABCD").Second()
}

func Test_Symbol_Value_returnsTheStringRepresentation(t *testing.T) {
	res := Symbol("ABB").Value()
	assertDeepEquals(t, res, "ABB")
}

func Test_Symbol_String_returnsTheStringRepresentation(t *testing.T) {
	res := Symbol("ABB").String()
	assertDeepEquals(t, res, "ABB")
}