The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use utf8;
use Test::More;
use t::Util;

use Minilla;
use Minilla::Project;

my $guard = pushd(tempdir());

spew('minil.toml', <<'...');
name = "foo-bar"
[no_index]
directory = ["samplesample"]
...

mkpath('lib/App');
spew('lib/App/foobar.pm', <<'...');
package App::foobar;
1;
...

git_init_add_commit();
my $project = Minilla::Project->new();

is_deeply(
    $project->no_index,
    {
        directory => ["samplesample"],
    }
);

done_testing;