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

Changelog

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


  * Team upload.

  [ gregor herrmann ]
  * debian/control: remove Nicholas Bamber from Uploaders on request of
    the MIA team.
  * Strip trailing slash from metacpan URLs.

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend

  [ gregor herrmann ]
  * Add debian/upstream/metadata
  * Imported upstream version 0.113
  * Add autopkgtest control file.

 -- gregor herrmann <email address hidden>  Mon, 08 Sep 2014 21:34:53 +0200

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

Builds

Vivid: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libtest-deep-perl_0.113-1.dsc 2.3 KiB 4f12d8d0a5be8f07b0f331ed6f082eaf2aa78519c4e480bc146ca03f2bed78ad
libtest-deep-perl_0.113.orig.tar.gz 35.9 KiB 1f28f96e3be35208965ff5b926968cfebd26bec0cce17aa48fdb1602c4973668
libtest-deep-perl_0.113-1.debian.tar.xz 3.7 KiB fc016a78ee3d6ef508f7d7291546866a7e87ff9ac65474c1c196aac1a6ab4604

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