SPUG: diference between Test::More and use Test::Simple tests

Colin Meyer cmeyer at helvella.org
Mon Jun 6 14:21:13 PDT 2005


On Mon, Jun 06, 2005 at 02:13:53PM -0700, Medrano-Zaldivar, L E wrote:
> how can be implementing Test: more with Test::Harness?

Test::Harness is a module that provides the ability to run tests (which
need to be based on, or compatible with Test::Simple or Test::More), and
summarize the results.

If you have many different files, each with one or more tests in them,
Test::Harness can help you run all of the tests in all of the files, and
then present the results in a fashion that is easy to read.

So, you write your tests with Test::Simple or Test::More, and then use
Test::Harness to run them.

For more information, see the fine documentation at: 

  http://search.cpan.org/~petdance/Test-Harness-2.48/lib/Test/Harness.pm

-Colin.


More information about the spug-list mailing list