libtest-exit-perl 0.11-2 source package in Ubuntu

Changelog

libtest-exit-perl (0.11-2) unstable; urgency=medium

  [ gregor herrmann ]
  * Strip trailing slash from metacpan URLs.

  [ Axel Beckert ]
  * Remove Maximilian Gaß from Uploaders (no more active according to himself)

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Set Testsuite header for perl package.

 -- gregor herrmann <email address hidden>  Sun, 05 Jun 2022 17:30:50 +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

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtest-exit-perl_0.11-2.dsc 2.1 KiB ae3f16fc57c3f067fc477e059661c3c238feba62738d1e6f191a49b41f9aefeb
libtest-exit-perl_0.11.orig.tar.gz 9.5 KiB fbda92d37e0481d18eebc81e48d025228b57184c59b2d5a6f6bdf87042e8c7b2
libtest-exit-perl_0.11-2.debian.tar.xz 2.2 KiB 72c794910f92d8e505694a2b12b8aa82d4ef040f682990e3062d06efe8aef078

Available diffs

No changes file available.

Binary packages built by this source

libtest-exit-perl: Perl module for testing whether code exits without terminating

 Test::Exit provides some simple tools for testing that code does or does not
 call exit(), while stopping code that does exit at the point of the exit().
 Currently it does so by means of exceptions, so it will not function properly
 if the code under test calls exit() inside of an eval block or string.
 .
 The only criterion tested is that the supplied code does or does not call
 exit(). If the code throws an exception, the exception will be propagated and
 you will have to call it yourself. die()ing is not exiting for the purpose of
 these tests.