libtest-aggregate-perl 0.372-2 source package in Ubuntu

Changelog

libtest-aggregate-perl (0.372-2) unstable; urgency=medium

  * Team upload.
  * Remove build dependency on libdata-dump-streamer-perl,
    broken by Perl 5.22. (Closes: #801660)
  * Make the package autopkgtestable.

 -- Niko Tyni <email address hidden>  Tue, 13 Oct 2015 21:53:48 +0300

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-aggregate-perl_0.372-2.dsc 2.3 KiB e247a905bd998a09bf80d5f9334d75e855a2380f9fe7299469e9217f2136b696
libtest-aggregate-perl_0.372.orig.tar.gz 32.9 KiB 2cea4fb79b390277691a4e303c008a38247bbce66a8d8a6631fa7ca433254f5e
libtest-aggregate-perl_0.372-2.debian.tar.xz 2.6 KiB 6d27693c39abfe914e7abf4e51961f405029b9ad2392db4d1424b47ccc4e1891

Available diffs

No changes file available.

Binary packages built by this source

libtest-aggregate-perl: module for aggregating tests to make them run faster

 A common problem with many test suites is that they can take a long time to
 run. The longer they run, the less likely you are to run the tests.
 .
 Test::Aggregate borrows a trick from Apache::Registry to load up your tests
 at once, create a separate package for each test and wraps each package in a
 method named run_the_tests. This allows one to load perl only once and related
 modules only once. If you have modules which are expensive to load, this can
 dramatically speed up a test suite.
 .
 WARNING: this is ALPHA code. The interface is not guaranteed to be stable.
 Further, check out Test::Aggregate::Nested (included with this distribution).
 It's a more robust implemenation which does not have the same limitations as
 Test::Aggregate.