File: 06-try_built_nofallback-pass3.t

package info (click to toggle)
libdist-zilla-plugin-bootstrap-lib-perl 1.001000-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 316 kB
  • ctags: 2
  • sloc: perl: 221; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 767 bytes parent folder | download
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
use strict;
use warnings;

use Test::More;
use Test::DZil qw( simple_ini );
use Dist::Zilla::Util::Test::KENTNL 1.003001 qw(dztest);
require Dist::Zilla::Plugin::Bootstrap::lib;

my $t   = dztest();
my $ini = simple_ini(
  { name => 'E' },
  [ 'Bootstrap::lib', { try_built => 1, fallback => 0, try_built_method => 'parseversion' } ],    #
  ['=E'],
);
my $epm = <<'EOF';
use strict;
use warnings;
package E;

sub register_component {}

1;
EOF
$t->add_file( 'dist.ini'        => $ini );
$t->add_file( 'E-0.01/dist.ini' => $ini );
$t->add_file( 'E-0.02/dist.ini' => $ini );
$t->add_file( 'lib/E.pm',        $epm );
$t->add_file( 'E-0.01/lib/E.pm', $epm );
$t->add_file( 'E-0.02/lib/E.pm', $epm );

$t->build_ok;

note explain $t->builder->log_messages;

done_testing;