Re: [PATCH] Test::Builder holds object inside

2002-08-26 Thread Michael G Schwern
On Thu, Aug 22, 2002 at 10:29:25PM +0900, Tatsuhiko Miyagawa wrote: Here's a patch for Test::(Simple|More) to allow idioms like my $obj = Foo-new; ok($obj, 'object is defined'); Without this patch, passed $obj was referenced in Test::Builder, so REFCNT doesn't come to 0 before global

Re: Add Test::Harness 2.x Prerequisite to Test::Simple?

2002-08-26 Thread Michael G Schwern
On Sat, Aug 24, 2002 at 03:08:08PM -0700, chromatic wrote: I've been using Test::Exception on a project and am very glad to have it. I ran into a small issue trying to install it, though: it has TODO tests, but those failed as the existing version of Test::Harness (1.26 or so) did not

Re: [PATCH MakeMaker.pm] Add documentation for ExtUtils::MakeMaker::prompt()

2002-08-26 Thread Michael G Schwern
On Thu, Aug 22, 2002 at 06:55:46AM -0500, Dave Rolsky wrote: +If Cprompt() detects that it is not running in interactively (say, +if it is running from a CPAN shell), or if the PERL_MM_USE_DEFAULT +environment variable is set to true, the $default will be used without +prompting. This

[ANNOUNCE] Test::Simple 0.47

2002-08-26 Thread Michael G Schwern
http://www.pobox.com/~schwern/src/Test-Simple-0.47.tar.gz Two major bugs were added in 0.46. Objects would accidentally be stored internally causing destructors not to fire when people expected them to. Also ithread support was broken. These have both been fixed. 0.47 Mon Aug 26 03:54:22

Testing POSIX locale support

2002-08-26 Thread John Peacock
I have a module, Math::Currency, which tries to be very smart with regard to POSIX locale settings when defining the default currency formatting. However, since I can only test on _my_ systems, I am limited in my ability to guess all of the strange locale settings that may be in use.

Re: Testing POSIX locale support

2002-08-26 Thread Michael G Schwern
On Mon, Aug 26, 2002 at 04:05:26PM -0400, John Peacock wrote: Specifically, in order to test that the locale stuff is working, I need to have two different locales installed to switch between. Currently, I am using en_US and en_GB, but obviously that ignores most of the planet. I was

CPAN Upload: S/SB/SBURKE/Test-1.21.tar.gz

2002-08-26 Thread Sean M. Burke
The new version of Test (v1.21) is entering CPAN, and is in being added to blead. -- Sean M. Burkehttp://www.spinn.net/~sburke/

Re: Testing POSIX locale support

2002-08-26 Thread John Peacock
Nicholas Clark wrote: So you may wish to install fa_IR and test with that. Ick! Another one! AFAICT, Perl's locale does not recognize UTF multibyte characters, as I discovered with ja_JP.UTF-8 (which has a UTF representation for Yen if I am not very much mistaken). I think I am going