Tagged Questions

Perl's prove tool is a perl script for customizing automatic tests and summarizing the results. Because it is part of the Module Test::Harness, itself a perl core module, users will find prove pre-installed in the .../perl/bin directory. Its documentation can be invoked from the command line with ...

learn more… | top users | synonyms

8
votes
2answers
934 views

Forking subprocesses in Perl unit tests stops prove; Test::Harness exiting

I have been trying to use the Perl utility/module "prove" as a test harness for some unit tests. The unit tests are a little more "system" than "unit" as I need to fork off some background processes ...
5
votes
1answer
70 views

Test fails under prove if it writes to stdout without newline

When I run a perl test using the prove utility, it fails if the method under test contains print statements that are not terminated by newlines. use Test::More tests=>1; ok(foo(), "calling foo"); ...
4
votes
1answer
98 views

How to run same tests on different servers using prove?

I am using the Perl prove testing utility (TAP::Harness) to test my program. I need to run the same tests first on a local computer, then on a remote computer. (Test programs should connect to ...
2
votes
3answers
139 views

How can I easily add the uninstalled Perl modules in my development directory to @INC?

I'm writing Perl t/*.t tests for an existing project. During development, I'd like to use 'prove' to run select tests at arbitrary depths in the module directory hierarchy. I've created some t/ ...