libtest-deep-perl 1.204-1 source package in Ubuntu

Changelog

libtest-deep-perl (1.204-1) unstable; urgency=medium

  * Team upload.

  [ Debian Janitor ]
  * Update standards version to 4.6.1, no changes needed.

  [ gregor herrmann ]
  * Import upstream version 1.204.
  * Update upstream email address.
  * Update years of upstream copyright.
  * Update alternative test dependencies.
  * Refresh list of test and runtime dependencies.
  * Don't install newly generated incomplete boilerplate manpages.
  * Declare compliance with Debian Policy 4.6.2.

 -- gregor herrmann <email address hidden>  Sun, 08 Jan 2023 20:59:11 +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-deep-perl_1.204-1.dsc 2.4 KiB 9fb14a215d3bb32dc08d8d97cdf7b6a09e8dd7ecdb9b62fd5ea1753465c1cae6
libtest-deep-perl_1.204.orig.tar.gz 68.4 KiB b6591f6ccdd853c7efc9ff3c5756370403211cffe46047f082b1cd1611a84e5f
libtest-deep-perl_1.204-1.debian.tar.xz 4.5 KiB 6924d1a555e77b90224abe8113bda81e208a09015748b11bdc9d2440a3e8cdeb

Available diffs

No changes file available.

Binary packages built by this source

libtest-deep-perl: Perl module for extremely flexible deep comparisons

 Test::Deep gives you very flexible ways to check that the result you got is
 the result you were expecting. At it's simplest it compares two structures by
 going through each level, ensuring that the values match, that arrays and
 hashes have the same elements and that references are blessed into the correct
 class. It also handles circular data structures without getting caught in an
 infinite loop.
 .
 Where it becomes more interesting is in allowing you to do something besides
 simple exact comparisons. With strings, the eq operator checks that 2 strings
 are exactly equal but sometimes that's not what you want. When you don't know
 exactly what the string should be but you do know some things about how it
 should look, eq is no good and you must use pattern matching instead.
 Test::Deep provides pattern matching for complex data structures