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

Changelog

libtest-nowarnings-perl (1.06-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Remove constraints unnecessary since buster
  * Update standards version to 4.6.0, no changes needed.
  * Apply multi-arch hints. + libtest-nowarnings-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 13 Oct 2022 22:46:37 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtest-nowarnings-perl_1.06-2.dsc 2.1 KiB 2d868c67d17415a3e00d91e2a7be6124efafa626d8fa09f37c938a882637c453
libtest-nowarnings-perl_1.06.orig.tar.gz 19.0 KiB c2dc51143b7eb63231210e27df20d2c8393772e0a333547ec8b7a205ed62f737
libtest-nowarnings-perl_1.06-2.debian.tar.xz 3.5 KiB 03f103c7817d91b907f4f8fc92a76e7a3e332e076151b9a67e963d08419bc7bc

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.