David Landgren wrote:
Gavin Henry wrote:
Dear List,
In "Perl Testing - A Developers Notebook" it has a section on
Test::Kwalitee.
I can't find this module anywhere, nothing on the CPAN or on Google.
It would only be POD, I imagine.
Anyone know where it's hosted?
Kwalitee, as in cpants
Shlomi Fish wrote:
Hi all!
Does anyone know of a Test::Harness extension or replacement that can color
the final report line in green if all tests passed and in red otherwise?
search.cpan.org is no help, and couldn't find anything relevant by a brief
scanning of its POD page there (but not a
On Tue, Aug 16, 2005 at 10:07:20AM +0100, David Cantrell wrote:
> Michael G Schwern wrote:
>
> >* Private docs (=begin/end private) allow you to document private and
> >public
> > functions using the same style.
>
> Ooh, I didn't know about that! What revision of perl (or rather,
> perldoc) d
On Fri, Aug 05, 2005 at 11:32:45AM -0400, Robert wrote:
> I am creating my first module (finally) and I was told a while ago to
> use Module::Starter. Which I did. I am fine there. When I look at the
> code generated I see that all the POD stuff is inline while I prefer
> to see POD stuff at the en
On Fri, Sep 17, 2004 at 09:33:39AM +0100, [EMAIL PROTECTED] wrote:
>
> it's basically a confusing if else
>
> if ($one == $two) { return 1 } else { return 0 }
Or
return $one == $two;
Dave...
--
We are far too young and clever
What is the current state of the art in testing web apps.
What we have:
* mod_perl (Apache::Registry) web site
* cookies (boo!)
* frames (bigger boo!!)
What we need:
A way to throw requests at various parts of the web site in order
to test the a) correctness and b) speed of the responses.
Is