File: encoding.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 (46 lines) | stat: -rw-r--r-- 575 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
41
42
43
44
45
46
use strict;
use warnings;
use Test::More 0.88;
use utf8;

use autodie;
use Test::DZil;

my $ini = <<'END_INI';
license = Perl_5
author = E. Xavier Ample <example@example.org>
abstract = Sample DZ Dist
name = DZT-Sample
copyright_holder = E. Xavier Ample
version = 0.001

[GatherDir]

[Encoding / general]
encoding=utf8
match=^
ignore=^t/

[Encoding / subset]
encoding=bytes
match=^t/

END_INI


my $tzil = Builder->from_config(
  { dist_root => 'corpus/dist/DZT' },
  {
    add_files => {
      'source/dist.ini' => $ini
    },
  },
);

$tzil->build;


pass;

done_testing;