wok view perl-test-nowarnings/description.txt @ rev 25118

Use https://download.tuxfamily.org/ for some broken wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 25 16:14:50 2022 +0000 (23 months ago)
parents
children
line source
1 In general, your tests shouldn't produce warnings.
2 This modules causes any warnings to be captured and stored.
3 It automatically adds an extra test that will run when your script ends
4 to check that there were no warnings.
5 If there were any warnings, the test will give a "not ok" and diagnostics
6 of where, when and what the warning was, including a stack trace of what
7 was going on when the it occurred.
9 If some of your tests are supposed to produce warnings then you should be
10 capturing and checking them with Test::Warn, that way Test::NoWarnings
11 will not see them and so not complain.
13 The test is run by an END block in Test::NoWarnings.
14 It will not be run when any forked children exit.