On Oct 23, 2006, at 7:39 AM, Paul Cochrane wrote:

BEGIN {
   eval { use SVN::Client; };
   if ($@) {
       plan skip_all => 'SVN::Client not installed';
   }
}


Paul,

This should be
    eval {require SVN::Client; };

use() is a compile-time directive, not runtime.

Chris

-- Chris Dolan, Software Developer, Clotho Advanced Media Inc.
608-294-7900, fax 294-7025, 1435 E Main St, Madison WI 53703
vCard: http://www.chrisdolan.net/ChrisDolan.vcf

Clotho Advanced Media, Inc. - Creators of MediaLandscape Software (http://www.media-landscape.com/) and partners in the revolutionary Croquet project (http://www.opencroquet.org/)


Reply via email to