This file is indexed.

/usr/share/php/kohana3.1/modules/unittest/tests.php is in libkohana3.1-mod-unittest-php 3.1.5-1.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
<?php

if ( ! class_exists('Kohana'))
{
	die('Please include the kohana bootstrap file (see README.markdown)');
}

if ($file = Kohana::find_file('classes', 'unittest/tests'))
{
	require_once $file;

	// PHPUnit requires a test suite class to be in this file,
	// so we create a faux one that uses the kohana base
	Class TestSuite extends Unittest_Tests
	{}
}
else
{
	die('Could not include the test suite');
}