Re: Proposed Kwalitee tests: has_license and/or has_meta_yml_license

2005-11-03 Thread David Cantrell
David Landgren wrote: I don't know how to distinguish between someone who likes to jumps through hoops and someone who cares about their modules. I do, but it involves reading what they've written instead of (for example) just rgrepping for the current POD testing flavour of the month.

Re: CPAN Testers results

2005-11-03 Thread Barbie
Quoting Ovid [EMAIL PROTECTED]: I've noticed that http://search.cpan.org/~ovid/HOP-Parser-0.01/, amongst other modules, has no CPAN test results appearing even though CPAN tester reports are coming in. I've seen this for other modules, too. Is there an announced reason for this I missed

Test::More behavior issue with Devel::Cover + patch

2005-11-03 Thread Pete Krawczyk
First of all, I have Test::More 0.62 installed and Devel::Cover 0.55 under Perl 5.8.2. I also have a simple test script: $ cat test.pl #!/usr/bin/perl use warnings; use strict; use Test::More tests = 1; $a = {}; isa_ok($a,'HASH'); ...which works well under prove: $ prove test.pl testok

Re: automated web testing with selenium

2005-11-03 Thread Tels
-BEGIN PGP SIGNED MESSAGE- Moin, On Wednesday 02 November 2005 22:56, Luke Closs wrote: Hey there. I was just interviewed by qapodcast.com about Selenium, a cool new automated web testing tool. It's really great, and super easy to use. Also, yesterday Test::WWW::Selenium was

Re: Test::More behavior issue with Devel::Cover + patch

2005-11-03 Thread Ricardo SIGNES
* Pete Krawczyk [EMAIL PROTECTED] [2005-11-03T12:46:48] The solution I see is to make sure the object can() isa(), thus avoiding the die in the process: It was using -isa instead of UNIVERSAL::isa because isa might be overridden. Surely the same could apply to -can. -- rjbs

Re: Test::More behavior issue with Devel::Cover + patch

2005-11-03 Thread Pete Krawczyk
Subject: Re: Test::More behavior issue with Devel::Cover + patch From: Ricardo SIGNES [EMAIL PROTECTED] Date: Thu, 3 Nov 2005 13:14:34 -0500 }* Pete Krawczyk [EMAIL PROTECTED] [2005-11-03T12:46:48] } } The solution I see is to make sure the object can() isa(), thus avoiding } the die in the