pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/p5-Test-use-ok
Module Name: pkgsrc
Committed By: abs
Date: Mon Jun 23 03:59:19 UTC 2008
Update of /cvsroot/pkgsrc/devel/p5-Test-use-ok
In directory ivanova.netbsd.org:/tmp/cvs-serv1936
Log Message:
Import p5-Test-use-ok-0.02
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: TNF
Release Tags: pkgsrc-base
N pkgsrc/devel/p5-Test-use-ok/Makefile
N pkgsrc/devel/p5-Test-use-ok/DESCR
N pkgsrc/devel/p5-Test-use-ok/distinfo
No conflicts created by this import
Home |
Main Index |
Thread Index |
Old Index