This file is indexed.

/usr/share/perl5/Module/Starter/Plugin/CGIApp/templates/titanium/01-load.t is in libmodule-starter-plugin-cgiapp-perl 0.30-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
#!/usr/bin/perl

# Test to see if the module loads correctly.
use warnings;
use strict;
use Test::More tests => <tmpl_var nummodules>;

BEGIN {
<tmpl_loop modules>
    use_ok('<tmpl_var modules_item>');
</tmpl_loop>
}

diag(
<tmpl_loop modules>
    "Testing <tmpl_var modules_item> $<tmpl_var modules_item>::VERSION, Perl $], $^X\n",
</tmpl_loop>
);