pkgsrc-WIP-cvs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: wip/p5-Test-use-ok
Module name: wip
Committed by: kuli0020
Date: Fri Apr 7 18:18:01 UTC 2006
Import into wip/p5-Test-use-ok
Log Message:
According to the Test::More documentation, it is recommended to run
use_ok() inside a BEGIN block, so functions are exported at
compile-time and prototypes are properly honored.
That is, instead of writing this:
use_ok( 'Some::Module' );
use_ok( 'Other::Module' );
One should write this:
BEGIN { use_ok( 'Some::Module' ); }
BEGIN { use_ok( 'Other::Module' ); }
However, people often either forget to add BEGIN, or mistakenly
group
use_ok with other tests in a single BEGIN block, which can
create subtle
differences in execution order.
With this module, simply change all use_ok in test scripts to
use ok,
and they will be executed at BEGIN time. The explicit space
after use
makes it clear that this is a single compile-time action.
Status:
Vendor Tag: KULI0020
Release Tags: KULI0020_20060309
N wip/p5-Test-use-ok/DESCR
N wip/p5-Test-use-ok/distinfo
N wip/p5-Test-use-ok/PLIST
N wip/p5-Test-use-ok/Makefile
No conflicts created by this import
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
pkgsrc-wip-cvs mailing list
pkgsrc-wip-cvs%lists.sourceforge.net@localhost
https://lists.sourceforge.net/lists/listinfo/pkgsrc-wip-cvs
Home |
Main Index |
Thread Index |
Old Index