libtest-nowarnings-perl 1.04-1 source package in Ubuntu

Changelog

libtest-nowarnings-perl (1.04-1) unstable; urgency=low

  * Team upload.
  * New upstream release.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Tue,  13 Dec 2011 09:42:43 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Precise
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release main perl
Precise release main perl

Builds

Precise: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libtest-nowarnings-perl_1.04.orig.tar.gz 17.8 KiB 638a57658cb119af1fe5b15e73d47c2544dcfef84af0c6b1b2e97f08202b686c
libtest-nowarnings-perl_1.04-1.debian.tar.gz 2.6 KiB d67cedb2a235aa9a434262243d8d56f77ddc9950caec9a54a41a151a47af7008
libtest-nowarnings-perl_1.04-1.dsc 2.1 KiB 42f5183e01a3be475f69c01ee9c4229bdc796e611f9117c3385baf7edeef0659

Available diffs

View changes file

Binary packages built by this source

libtest-nowarnings-perl: module to make sure you didn't emit any warnings while testing

 In general, your tests shouldn't produce warnings. This module causes any
 warnings to be captured and stored. It automatically adds an extra test that
 will run when your script ends to check that there were no warnings. If there
 were any warnings, the test will give a "not ok" and diagnostics of where, when
 and what the warning was, including a stack trace of what was going on when
 it occurred.
 .
 If some of your tests are supposed to produce warnings then you should be
 capturing and checking them with Test::Warn, that way Test::NoWarnings will
 not see them and so not complain.
 .
 The test is run by an END block in Test::NoWarnings. It will not be run when
 any forked children exit.