📄 postamble.t
字号:
#!/usr/bin/perl -w# Wherein we ensure that postamble works ok.BEGIN { if( $ENV{PERL_CORE} ) { chdir 't' if -d 't'; @INC = ('../lib', 'lib'); } else { unshift @INC, 't/lib'; }}use strict;use Test::More tests => 8;use MakeMaker::Test::Utils;use MakeMaker::Test::Setup::BFD;use ExtUtils::MakeMaker;use TieOut;chdir 't';perl_lib;$| = 1;my $Makefile = makefile_name;ok( setup_recurs(), 'setup' );END { ok( chdir File::Spec->updir ); ok( teardown_recurs(), 'teardown' );}ok( chdir 'Big-Dummy', q{chdir'd to Big-Dummy} ) || diag("chdir failed: $!");{ my $warnings = ''; local $SIG{__WARN__} = sub { $warnings = join '', @_; }; my $stdout = tie *STDOUT, 'TieOut' or die; my $mm = WriteMakefile( NAME => 'Big::Dummy', VERSION_FROM => 'lib/Big/Dummy.pm', postamble => { FOO => 1, BAR => "fugawazads" } ); is( $warnings, '', 'postamble argument not warned about' );}sub MY::postamble { my($self, %extra) = @_; is_deeply( \%extra, { FOO => 1, BAR => 'fugawazads' }, 'postamble args passed' ); return <<OUT;# This makes sure the postamble gets writtenOUT}ok( open(MAKEFILE, $Makefile) ) or diag "Can't open $Makefile: $!";{ local $/; like( <MAKEFILE>, qr/^\# This makes sure the postamble gets written\n/m, 'postamble added to the Makefile' );}close MAKEFILE;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -