in reply to Running tests on modules generated by Module::Starter still in /lib directory

What do you mean by "run tests"?

Probably not the following, right?

cd ~/perl/perl-lib/MyModule prove -l

Adding -v for verbose might be handy, too.

Update: Added the cd .

($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

Replies are listed 'Best First'.
Re^2: Running tests on modules generated by Module::Starter still in /lib directory
by nysus (Parson) on Feb 12, 2017 at 18:27 UTC

    The test files found at MyModule/*.t

    $PM = "Perl Monk's";
    $MCF = "Most Clueless Friar Abbot Bishop Pontiff Deacon Curate";
    $nysus = $PM . ' ' . $MCF;
    Click here if you love Perl Monks

      man prove |grep '\s\-l'

      ...output...

      -l, --lib Add 'lib' to the path for your tests (- +Ilib).

      Dave