Commit graph

3 commits

Author SHA1 Message Date
abs
568fa82b39 PKG_DESTDIR_SUPPORT must come before mk includes 2009-05-19 07:31:05 +00:00
sno
5e33a1e66b PkgSrc changes:
- 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-04-12 10:59:47 +00:00
abs
144d78a82e Added devel/p5-Test-Most version 0.20
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.
2009-02-14 00:12:30 +00:00