in reply to Re: Looking for help for unit tests and code coverage on an existing perl script (modulino References)
in thread Looking for help for unit tests and code coverage on an existing perl script
Good links there. Appreciate it.
In this theme, I went ahead and tried to setup an env similar to the layout described in this link:
StackOverFlow Complete build/unittest/codecoveragecouple of things that I did:
Then I was able to add a stanza to my test file.
my $my_dev_1 = sample::main("my-dev-1"); is($my_dev_1, "--- classes: - all - dev ", "my dev 1 test");
Not sure how I feel about the sample::main("my-dev-1"). Would appreciate some feedback on that to see if I am calling this correctly.
That said, I was able to generate code cover from this setup.
$ ./Build test $ ./Build testcover
---------------------------- ------ ------ ------ ------ ------ ------ ------ File stmt bran cond sub pod time total ---------------------------- ------ ------ ------ ------ ------ ------ ------ blib/lib/sample.pm 97.4 91.7 n/a 100.0 0.0 100.0 93.2 Total 97.4 91.7 n/a 100.0 0.0 100.0 93.2 ---------------------------- ------ ------ ------ ------ ------ ------ ------
That processes pumps out a cover.html file that kinda aligns more with what I was hoping to see. The changes to the original code are not significant, but they are changes, more than what I was hoping to make, perhaps digging in harder on Test::Output would help.
|
|---|