Dist::Zilla zuerst einmal konfigurieren, um Boilerplates für Module und Tests zu haben $ dzil new My::Test $ cd My-Test/ $ vim dist.ini füge [AutoPrereqs] hinzu $ vim lib/My/Test.pm füge hinzu: # ABSTRACT: Demo-Modul für Dist::Zilla use Parse::BBCode 0.14; use DBI; use Non::Sense 99; $ dzil listdeps --versions DBI = 0 ExtUtils::MakeMaker = 6.30 Non::Sense = 99 Parse::BBCode = 0.14 strict = 0 Test::More = 0 warnings = 0 $ dzil listdeps --versions --missing Non::Sense = 99 $ dzil build ... [DZ] writing archive to My-Test-0.001.tar.gz $ cd My-Test-0.001/ $ perl Makefile.PL Checking if your kit is complete... Looks good Warning: prerequisite Non::Sense 99 not found. Generating a Unix-style Makefile Writing Makefile for My::Test Writing MYMETA.yml and MYMETA.json $ prove -lr t # Failed test 'use My::Test;' # at t/00.load.t line 3. # Tried to use 'My::Test'. # Error: Can't locate Non/Sense.pm in @INC (you may need to install the Non::Sense module) ...