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

Changelog

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

  [ Harlan Lieberman-Berg ]
  * Team upload
  * New upstream release.
  * Bumped compat, debhelper to 8, standards version to 3.9.2.

  [ Ansgar Burchardt ]
  * debian/control: Convert Vcs-* fields to Git.

  [ Salvatore Bonaccorso ]
  * debian/copyright: Replace DEP5 Format-Specification URL from
    svn.debian.org to anonscm.debian.org URL.

  [ gregor herrmann ]
  * Update years of upstream copyright.
  * Update build and runtime dependencies:
    - remove libtest-tester-perl from Depends
    - (build) depend on perl 5.10.1 (for Test::Builder 0.86)
 -- Ubuntu Archive Auto-Sync <email address hidden>   Mon,  17 Oct 2011 11:11:33 +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

Builds

Precise: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libtest-nowarnings-perl_1.03.orig.tar.gz 17.6 KiB f808ae0ba90bbb83ef0de0fccdaa7c82dc95f161b2ee333098e9f40b8d06f4a9
libtest-nowarnings-perl_1.03-1.debian.tar.gz 2.6 KiB 34a8c3d77806bf3a1dada3acd6f603f75fa5793da86d183ef502a10553b8a470
libtest-nowarnings-perl_1.03-1.dsc 2.1 KiB 44c3f6e9447df89fd6896a60884fe6573f15912555d7bd701c55a667ff8654d4

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 modules 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 warings, 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
 the 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.