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

Changelog

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

  [ Jonathan Yu ]
  * New upstream release
  * Use new short debhelper rules format
  * Update copyright to DEP5 format

  [ gregor herrmann ]
  * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
    (source stanza).
  * debian/control: Added: ${misc:Depends} to Depends: field.

  [ Ryan Niebur ]
  * Remove Florian Ragwitz from Uploaders (Closes: #523246)

  [ Nathan Handler ]
  * debian/watch: Update to ignore development releases.

  [ Nicholas Bamber ]
  * New upstream release
  * Standards-Version 3.9.1
  * Added myself to Uploaders
  * Added debian/source/format
  * Refreshed copyright
  * Removed unneccessary version dependency
 -- Ubuntu Archive Auto-Sync <email address hidden>   Fri,  15 Oct 2010 09:42:28 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Natty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libtest-nowarnings-perl_1.02.orig.tar.gz 16.9 KiB e9a84d3043455c20599b4fd9b8b676cde4ae8f963e89734d7890df978a39610d
libtest-nowarnings-perl_1.02-1.debian.tar.gz 2.5 KiB 0e283ade8ef4f191759475e532044217c899e0a668a8afe17eb75b8846952ef9
libtest-nowarnings-perl_1.02-1.dsc 2.1 KiB da1daed421a409a185e09d64fc0313dcde4edc014a58b32ffe7d20b51f9f9e2b

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.