File: munger-that-prunes.t

package info (click to toggle)
libdist-zilla-perl 6.033-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,928 kB
  • sloc: perl: 7,282; makefile: 4; sh: 1
file content (40 lines) | stat: -rw-r--r-- 988 bytes parent folder | download | duplicates (6)
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
use strict;
use warnings;
use Test::More 0.88;

use lib 't/lib';

use Test::DZil;
use YAML::Tiny;

# In the future, pruning during munging may become impossible by design.  Until
# that time, it should not cause weird-o action at a distance. -- rjbs,
# 2016-01-31

{
   my $tzil = Builder->from_config(
      { dist_root => 'corpus/dist/DZT' },
      {
         add_files => {
            'source/Build.pod'  => "This file is cruft.\n",
            'source/Build2.pod' => "This other file is cruft.\n",
            'source/Build3.pod' => "This third file is cruft.\n",
            'source/dist.ini'   => simple_ini(
               'GatherDir',
               'MungerThatPrunesPodFiles',
            ),
         },
      },
   );
   
   $tzil->build;
   
   my @files = map {; $_->name } @{ $tzil->files };
   is_filelist(
      [ @files ],
      [ qw(lib/DZT/Sample.pm t/basic.t dist.ini) ],
      'munge_file that call prunes does not mangle $self->zilla->files',
   );
}

done_testing;