This file is indexed.

/usr/share/jed/jed-extra/tests/test-css1.sl is in jed-extra 2.5.7-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
18
19
20
21
22
23
24
25
26
27
28
% test-css1.sl:  Test css1.sl
% 
% Copyright © 2006 Günter Milde
% Released under the terms of the GNU General Public License (ver. 2 or later)
%
% Versions:
% 0.1 2006-03-03 


require("unittest");


sw2buf("*scratch*");


% public define css1_mode() {
% css1_mode: library function  Undocumented
test_function("css1_mode");
test_last_result();
test_equal(get_mode_name(), "css1");

no_mode();

% test the automatic mode setting at loading a file
test_function("find_file", "test.css"); % new file, empty buffer
test_equal(get_mode_name(), "css1");
if (bufferp("test.css"))
  delbuf("test.css");