/usr/lib/perl5/Wx/PerlTest.pm is in libwx-perl 1:0.9922-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 | #############################################################################
## Name: ext/test/lib/Wx/PerlTest.pm
## Purpose: Wx::PerlTest various tests
## Author: Mark Dootson
## Modified by:
## Created: 2012-09-28
## RCS-ID: $Id: PerlTest.pm 3395 2012-09-29 02:01:49Z mdootson $
## Copyright: (c) 2012 Mark Dootson
## Licence: This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself
#############################################################################
package Wx::PerlTest;
use Wx;
use strict;
use vars qw($VERSION);
$VERSION = '0.01';
Wx::wx_boot( 'Wx::PerlTest', $VERSION );
#
# properly setup inheritance tree
#
no strict;
use strict;
1;
# Local variables: #
# mode: cperl #
# End: #
|