This file is indexed.

/usr/share/perl5/Poet/Mechanize.pm is in libpoet-perl 0.16-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
package Poet::Mechanize;
$Poet::Mechanize::VERSION = '0.16';
use Poet::Environment;
use Plack::Util;
use base qw(Test::WWW::Mechanize::PSGI);
use strict;
use warnings;

sub new {
    my ( $class, %params ) = @_;
    my $poet = delete( $params{'env'} ) || Poet::Environment->current_env;
    my $app = Plack::Util::load_psgi( $poet->bin_path("app.psgi") );
    return $class->SUPER::new( app => $app, %params );
}

1;