NAME
Acme::Foo - Yeah!!
SYNOPSIS
Gah
LICENSE
Copyright 2013- by author foo. All rights reserved.
AUTHORS
author foo
... write_minil_toml({ name => 'Acme-Foo', abstract_from => 'lib/Acme/Foo.pod', authors_from => 'lib/Acme/Foo.pod', });
git_init_add_commit();
chdir('../main');
git_init();
git_submodule_add('../sub');
git_add('.');
git_commit('-m', 'initial import');
chdir('sub');
my $project = Minilla::Project->new();
is($project->abstract(), 'Yeah!!');
is_deeply($project->authors(), ['author foo']);
};
done_testing;