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

Changelog

libtest-deep-perl (0.110-1) unstable; urgency=low


  * Team upload.
  * New upstream release.
  * debian/copyright: update to Copyright-Format 1.0.
  * Remove unneeded lintian override.
  * Bump Standards-Version to 3.9.3 (no changes).

 -- gregor herrmann <email address hidden>  Mon, 25 Jun 2012 19:28:21 +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

Builds

Quantal: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libtest-deep-perl_0.110-1.dsc 2.2 KiB 2acf09dc0d30fc6ddc5c10fcb522397b3521fc5e7963158e56b61cfaae69c259
libtest-deep-perl_0.110.orig.tar.gz 34.7 KiB 05129ca28a5ae0fb969f994169f1da78fdca684a85f9eb0b32e89c6aa74b2d8b
libtest-deep-perl_0.110-1.debian.tar.gz 3.4 KiB fc5697666143faee86bbafe3b8a32ab58c87e2f1e8aeb742ca06ce61ddb0bd4a

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