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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
use strict;
use warnings;
use Test::More 0.88;
use lib 't/lib';
use Test::DZil;
{
my $tzil = Builder->from_config(
{ dist_root => 'corpus/dist/DZT' },
{
add_files => {
'source/dist.ini' => simple_ini(
'GatherDir',
'MakeMaker',
[ Prereqs => { 'Foo::Bar' => '1.20', perl => '5.008' } ],
[ Prereqs => BuildRequires => { 'Builder::Bob' => '9.901' } ],
[ Prereqs => TestRequires => { 'Test::Deet' => '7',
perl => '5.008' } ],
),
},
},
);
$tzil->build;
my $makemaker = $tzil->plugin_named('MakeMaker');
my %want = (
DISTNAME => 'DZT-Sample',
NAME => 'DZT::Sample',
ABSTRACT => 'Sample DZ Dist',
VERSION => '0.001',
AUTHOR => 'E. Xavier Ample <example@example.org>',
LICENSE => 'perl',
PREREQ_PM => {
'Foo::Bar' => '1.20'
},
BUILD_REQUIRES => {
'Builder::Bob' => '9.901',
'Test::Deet' => '7',
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '6.30'
},
);
for my $key (sort keys %want) {
is_deeply(
$makemaker->__write_makefile_args->{ $key },
$want{ $key },
"correct value set for $key",
);
}
}
{
my $tzil = Builder->from_config(
{ dist_root => 'corpus/dist/DZT' },
{
add_files => {
'source/dist.ini' => simple_ini(
'GatherDir',
'MakeMaker',
[ Prereqs => { perl => '5.8.1' } ],
),
},
},
);
$tzil->build;
my $content = $tzil->slurp_file('build/Makefile.PL');
like($content, qr/^use 5\.008001;\s*$/m, "normalized the perl version needed");
}
done_testing;
|