summaryrefslogtreecommitdiff
path: root/devel/p5-Test-Most
AgeCommit message (Collapse)AuthorFilesLines
2012-10-31Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-10-03Bump all packages that use perl, or depend on a p5-* package, orwiz1-1/+2
are called p5-*. I hope that's all of them.
2012-09-10Packaging update for CPAN module Test::Most in devel/p5-Test-Most fromsno2-11/+13
0.25 to 0.31. pkgsrc changes: - adjust dependencies upstream changes since 0.25: 0.31 2012-09-06 - Fix "You tried to plan twice" bug (reported on #78564) 0.30 2012-09-05 - Bugfix: Moose can now be used safely as we exclude Test::Deep::blessed by default (multiple reports) - Bugfix from Randy Stauner. Time::HiRes eval test uses $@, not @_ - carp instead of warn (Olivier Mengué) - Remove autogenerated files (Olivier Mengué)
2011-11-28Update p5-Test-Most to 0.25.hiramatsu2-7/+6
Changes from previous: 0.25 2011-08-17 - Add timeit() function to time individual behaviours. 0.24 2011-06-18 - Update dependencies to pick up multiple bug fixes, new behaviours, in various Test:: libraries.
2011-08-14Revision bump after updating perl5 to 5.14.1.obache1-2/+2
2010-09-08Updating devel/p5-Test-Most from 0.22nb1 to 0.23sno2-20/+13
pkgsrc changes: - removing option for Data::Dumper::Names recommendation and install it by default - target it to test most, not nearly most - adjust dependencies Upstream changes: 0.23 2010-09-08 - added "Excluding Test Symbols" feature (RT#61146, Karen Etheridge).
2010-08-31Updating devel/p5-Test-Most from 0.21nb1 to 0.22sno2-13/+13
pkgsrc changes: - correcting license - adjusting dependency versions Upstream changes: 0.22 2010-08-07 - Added always_explain() and always_show(). - Apply doc fixes from ranguard. Thanks :) 0.21_04 2010-02-06 - Give people the ability to exclude test modules in case of conflicts. This is to resolve: "Prototype mismatch: sub main::blessed ($) vs none" error with Moose and Test::Deep. See https://rt.cpan.org/Ticket/Display.html?id=54362&results=e73ff63c5bf9ba0f796efdba5773cf3f 0.21_03 2010-02-06 - Bump up dependency on Test::Builder. Need that for done_testing() and to deprecate all_done(). - Remove strict and warnings from tests since they no longer need them :) - Decided to bump up the minimum version number for all test modules. This module should be "one stop shopping" for most people. - Moderately significant POD update. 0.21_02 2010-02-06 - Import strict an warnings. - Increase version requirement for https://rt.cpan.org/Ticket/Display.html?id=44790 Thanks to Gerda Shank for that. 0.21_01 2009-02-18 - Have explain() depend on Test::More::note() (patch from Schwern) - Depend on Test::More directly (patch from Scwhern)
2010-08-21Bump the PKGREVISION for all packages which depend directly on perl,seb1-1/+2
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=..."), minus the packages updated after the perl package update. sno@ was right after all, obache@ kindly asked and he@ led the way. Thanks!
2009-05-19PKG_DESTDIR_SUPPORT must come before mk includesabs1-2/+3
2009-04-12PkgSrc changes:sno2-6/+17
- update package for Test::Most to 0.21 Upstream changes: 0.21 2009-02-18 - No changes. Update version for release. 0.20_02 2008-11-26 - Make sure tests don't fail if optional Data::Dumper::Names dependency is not met. 0.20_01 2008-11-25 - Added &show. Like &explain, but tries to show variable names.
2009-02-14Added devel/p5-Test-Most version 0.20abs3-0/+46
This module provides you with the most commonly used testing functions and gives you a bit more fine-grained control over your test suite. use Test::Most tests => 4, 'die'; ok 1, 'Normal calls to ok() should succeed'; is 2, 2, '... as should all passing tests'; eq_or_diff [3], [4], '... but failing tests should die'; ok 4, '... will never get to here'; As you can see, the eq_or_diff test will fail. Because 'die' is in the import list, the test program will halt at that point.