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

Changelog

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

  * Team upload.

  [ gregor herrmann ]
  * debian/control: update {versioned,alternative} (build) dependencies.

  [ Salvatore Bonaccorso ]
  * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  * Change search.cpan.org based URIs to metacpan.org based URIs

  [ Axel Beckert ]
  * debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg-
    copyright"

  [ gregor herrmann ]
  * debian/control: remove Nicholas Bamber from Uploaders on request of
    the MIA team.
  * Strip trailing slash from metacpan URLs.

  [ Salvatore Bonaccorso ]
  * Fix some typos in package's long description.
    Thanks to Pascal De Vuyst <email address hidden> (Closes: #745309)
  * Update Vcs-Browser URL to cgit web frontend

  [ gregor herrmann ]
  * Update Test::Tester build dependency.

  [ Lucas Kanashiro ]
  * Add debian/upstream/metadata
  * Bump debhelper compatibility level to 9
  * Declare compliance with Debian policy 3.9.6
  * Update build dependency with cme. Silence lintian.
  * Mark package as autopkgtestable

  [ gregor herrmann ]
  * Update {Upstream-,}Contact in debian/{copyright,upstream/metadata}.

 -- Lucas Kanashiro <email address hidden>  Wed, 30 Dec 2015 10:57:11 -0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe perl
Bionic release universe perl
Xenial release universe perl

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtest-nowarnings-perl_1.04-2.dsc 2.3 KiB 06fe1db0a58199feac201c941a721bcbc9b7063aca909fe12bb39a5def71177f
libtest-nowarnings-perl_1.04.orig.tar.gz 17.8 KiB 638a57658cb119af1fe5b15e73d47c2544dcfef84af0c6b1b2e97f08202b686c
libtest-nowarnings-perl_1.04-2.debian.tar.xz 3.2 KiB 657548c2f5c02f840b6e4bb3c8b0f0343d368a7dfe624cbc8a622c9e3cbd9e43

Available diffs

No changes file available.

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.