File: 03_add_extra_compiler_flags.t

package info (click to toggle)
libmodule-build-pluggable-perl 0.10-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192 kB
  • sloc: perl: 434; makefile: 2
file content (58 lines) | stat: -rw-r--r-- 1,271 bytes parent folder | download | duplicates (4)
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
use strict;
use warnings;
use utf8;
use Test::More;
use File::Spec;
use lib File::Spec->rel2abs('lib');
use File::Path;
use Test::Module::Build::Pluggable;

subtest 'Module::Build::Pluggable::Base#add_extra_compiler_flags' => sub {
    my $test = Test::Module::Build::Pluggable->new(
        cleanup => $ENV{DEBUG} ? 0 : 1,
    );

    $test->write_plugin('Module::Build::Pluggable::Extra', <<'...');
package Module::Build::Pluggable::Extra;
use strict;
use warnings;
use utf8;
use parent qw/Module::Build::Pluggable::Base/;

sub HOOK_configure {
    my $self = shift;
    $self->add_extra_compiler_flags('-Wall');
}

1;
...

    $test->write_file('Build.PL', <<'...');
use strict;
use Module::Build::Pluggable (
    'Extra',
);

my $builder = Module::Build::Pluggable->new(
    dist_name => 'Eg',
    dist_version => 0.01,
    dist_abstract => 'test',
    dynamic_config => 0,
    module_name => 'Eg',
    requires => {},
    provides => {},
    author => 1,
    dist_author => 'test',
);
$builder->create_build_script();
...

    $test->write_file('MANIFEST', join("\n", qw(MANIFEST)));
    $test->run_build_pl();
    my $params = $test->read_file('_build/build_params');
    like($params, qr/-Wall/, 'added extra compiler flags');
    note $params;
};

done_testing;