| Server IP : 164.138.27.172 / Your IP : 216.73.216.143 Web Server : nginx/1.27.4 System : Linux cookingdream 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : www-adm ( 1001) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /home/jonasn/.cpan/build/ExtUtils-MakeMaker-7.64-0/t/ |
Upload File : |
#!/usr/bin/perl -w
# Test our simulation of pod2man
use strict;
use warnings;
use lib 't/lib';
use ExtUtils::Command::MM;
use Test::More tests => 3;
# The argument to perm_rw was optional.
# [rt.cpan.org 35190]
{
my $warnings;
local $SIG{__WARN__} = sub {
$warnings .= join '', @_;
};
pod2man("--perm_rw");
like $warnings, qr/Option perm_rw requires an argument/;
};
# Simulate the failure of Pod::Man loading.
# pod2man() should react gracefully.
{
local @INC = @INC;
unshift @INC, sub {
die "Simulated Pod::Man failure\n" if $_[1] eq 'Pod/Man.pm';
};
local %INC = %INC;
delete $INC{"Pod/Man.pm"};
my $warnings;
local $SIG{__WARN__} = sub {
$warnings .= join '', @_;
};
ok !pod2man();
is $warnings, <<'END'
Pod::Man is not available: Simulated Pod::Man failure
Man pages will not be generated during this install.
END
}