Test::More

Source: Wikipedia, the free encyclopedia.
Test::More
GPL
Websitehttps://metacpan.org/pod/Test::More

Test::More is a

chromatic
, Fergal Daly and perl-qa.

Test::More is the most popular Perl testing module, as of this 2010 about 80% of all CPAN distributions made use of it.[1]

History

Introduced in 2001 to replace Test.pm, Test::More simplified the culture of testing in Perl leading to a proliferation of new testing modules and a strongly test driven community.

In January–March 2014 Michael Schwern transferred ownership of Test::More and related modules to Chad 'Exodist' Granum.[2] On May 10, 2016 Exodist released version 1.302015[3][4] which included a complete refactor and partial rewrite of the internals. The new version includes major API updates and introduced several enhanced features. Extreme care was taken to preserve backwards compatibility for third party tools.[tone]

Functionality

Test::More is not a framework but can be used in conjunction with other testing libraries via a shared Test::Builder object. As a result, Test::More provides the baseline testing functions leaving other libraries to implement more specific and sophisticated functionality. This removes what would otherwise be a development bottleneck and allows a rich ecosystem of specialized niche testing functions.

Test::More is not a complete testing framework. Rather, test programs written with Test::More output their results as TAP which can then either be interpreted by a human, or more usually run through a TAP parser such as Test::Harness.[5]: 424  It is this separation between test program and test result interpreter via a common protocol which allows Perl programmers to develop so many different testing modules and use them in combination. Additionally, the TAP output can be stored and reinterpreted later providing a historical record of test results.

Among its features are more comprehensive error messages, functions to test regular expressions, functions to test objects, and functions to test complex data structures.[6]: 115  It can be used to compare values, such as a computed value to an expected value, or that a value is within an expected range.[7]: 217  The number of tests to be executed is listed in the test script.[8]: 202 

Tests that are known to fail under specific conditions or environments can be skipped.[6]: 115  This may occur if a system on which the test is executed lacks the capability to execute the tested function, or if the test is written in advance of the code.[7]: 218 

The module intercepts

standard output from the Perl script to execute the tests.[9]
: 31 

References

  1. ^ Poe, Curtis. "Test::Most". CPAN.
  2. ^ Granum, Chad (14 March 2014). "Test::More - New Maintainer, Also stop version checking!".
  3. ^ "Test::More". CPAN.
  4. ^ Granum, Chad (9 May 2016). "Test2+Test-Simple released!".
  5. .
  6. ^ .
  7. ^ .
  8. .
  9. .

External links