This file is indexed.

/usr/share/gocode/src/github.com/smartystreets/goconvey/web/server/watch/integration_testing/sub/stuff_test.go is in golang-github-smartystreets-goconvey-dev 1.6.1-2.

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
// This file's only purpose is to provide a realistic
// environment from which to run integration tests
// against the Watcher.
package sub

import (
	"fmt"
	"testing"
)

func TestStuff(t *testing.T) {
	if testing.Short() {
		return
	}

	fmt.Println()
}