Subject: | Adding Test::Distribution to the created tests |
Hello,
Something which is missing in the tests that Module::Starter automatically creates is a test script which uses Test::Distribution. Here is the script I use, which is very much like t/pod.t and t/pod-coverage.t:
use strict;
use Test::More;
eval "use Test::Distribution";
plan skip_all => "Test::Distribution required for checking distribution" if $@;
Thanks in advance,
Sébastien Aperghis-Tramoni