I have a module that I wrote with some useful features.
One of the functions is just a usage statement (recommended by @zdim)
use 5.008_008; use strict; use warnings;
I know that the subroutine works as expected and is simple enough for testing, but ... For coverage reports, I would like to include it in my unit tests. Is there a way to test it with Test::More ?
unit-testing perl perl-module
Speeddymon
source share