This file is indexed.

/usr/share/perl5/JSON/RPC/Test.pm is in libjson-rpc-perl 1.06-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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package JSON::RPC::Test;
use strict;
use parent qw(Exporter);
our @EXPORT = qw(test_rpc);

sub test_rpc {
    if (ref $_[0] && @_ == 2) {
        @_ = (dispatch => $_[0], client => $_[1]);
    }

    my %args = @_;
    my $dispatch = delete $args{dispatch};
    $args{app} = sub {
        $dispatch->handle_psgi(@_);
    };

    @_ = %args;
    goto \&Plack::Test::test_psgi;
}

1;

=head1 NAME

JSON::RPC::Test - Simple Wrapper To Test Your JSON::RPC

=head1 SYNOPSIS

    use JSON::RPC::Test;

    test_rpc $dispatch, sub {
        ...
    };

    # or
    test_rpc
        dispatch => $dispatch,
        client   => sub {
            ...
        }
    ;

=cut