in reply to How to run "Build test" showing text outputs?
perl -Mblib t/xxx.t, or prove -bv t/xxx.t
The blib module tells Perl to look in ./blib for library files. The "-b" flag for prove tells prove to invoke the -Mblib semantics.
Dave