This file is indexed.

/usr/share/php/tests/Horde_Text_Filter_Csstidy/Horde/Text/Filter/Csstidy/CsstidyTest.php is in php-horde-text-filter-csstidy 2.0.1-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
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
 * Horde_Text_Filter_Csstidy tests.
 *
 * @author     Michael Slusarz <slusarz@horde.org>
 * @category   Horde
 * @license    http://www.horde.org/licenses/gpl GPL
 * @package    Text_Filter_Csstidy
 * @subpackage UnitTests
 */

class Horde_Text_Filter_Csstidy_CsstidyTest extends PHPUnit_Framework_TestCase
{
    public function testMediaExpression()
    {
        $this->markTestSkipped('Skipping until csstidy supports Media Queries');

        $css = '@media all and (max-width: 670px) and (min-width: 0){}';

        $ob = new Horde_Text_Filter_Csstidy();

        $this->assertEquals(
            $css,
            $ob->postProcess($css)
        );
    }

}