my
$t
= dztest();
$t
->add_file(
'dist.ini'
=> simple_ini(
{
name
=>
'E'
},
[
'Bootstrap::lib'
, {
try_built
=> 1 } ],
[
'Bootstrap::ShareDir::Dist'
, {
try_built
=> 1 } ],
[
'=E'
],
)
);
$t
->add_file(
'share/example.txt'
,
q[ ]
);
$t
->add_file(
'lib/E.pm'
,
<<'EOF');
use strict;
use warnings;
package E;
use File::ShareDir qw( dist_file );
use Path::Tiny qw( path );
sub register_component {}
our $content = path( dist_file( 'E', 'example.txt' ) )->slurp;
1;
EOF
$t
->build_ok;
note explain
$t
->builder->log_messages;
done_testing;