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

Changelog

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

  * Team upload.
  * Import upstream version 1.120.

 -- gregor herrmann <email address hidden>  Sun, 29 Nov 2015 14:34:21 +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
Xenial release universe perl

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtest-deep-perl_1.120-1.dsc 2.3 KiB d7213e4f05091502ddf2e8222e6c8603dca982301f271672d5554ec3548d244a
libtest-deep-perl_1.120.orig.tar.gz 38.1 KiB 207ef8ea71291e5cf8258d1a4d98d360b9b5870989d187b3e2ff3c0fb201becd
libtest-deep-perl_1.120-1.debian.tar.xz 3.8 KiB 7156cb9d263837adc9668ccf3f2ce129837aa4439595d3414bc00866a4b468eb

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