Re: Request for Comments: Package testing results analysis, result codes

2006-02-19 Thread Michael Graham
] http://search.cpan.org/dist/Config-Context/ http://search.cpan.org/dist/CGI-Application-Plugin-Config-Context/ http://search.cpan.org/dist/CGI-Application-Plugin-AnyTemplate/ [2] HTML::Template is required because it's already a prerequisite of CGI::Application -- Michael Graham [EMAIL

Re: Running test suites under PersistentPerl

2005-12-07 Thread Michael Graham
another caveat with the PersistentPerl approach - END blocks seem only to run on the first request. Michael --- Michael Graham [EMAIL PROTECTED]

Running test suites under PersistentPerl

2005-12-05 Thread Michael Graham
, global vars; 'require'd code only gets loaded on the first request, etc. * Test scripts have to end in a true value. If there's interest, I'll try to package all this up into a CPAN module. Michael --- Michael Graham [EMAIL PROTECTED]

Re: Spurious CPAN Tester errors from Sep 23rd to present.

2005-10-06 Thread Michael Graham
, I haven't yet found one that requires Test::URI. Michael --- Michael Graham [EMAIL PROTECTED]

Re: New kwalitee test, has_changes

2005-09-26 Thread Michael Graham
or any other stock test boilerplate. If there's something left over, then the module probably has an actual test suite. Michael --- Michael Graham [EMAIL PROTECTED]

Re: Howto make 'require' fail ?

2005-09-25 Thread Michael Graham
$ prove -Ilib -It/prereq_lib t/ Michael -- Michael Graham [EMAIL PROTECTED]

Re: New kwalitee test, has_changes

2005-09-22 Thread Michael Graham
difference in kwalitee between a module that has only the default tests and a module with a hand-crafted test suite. One of the first things I do when checking out a new module is to check if there are more than three files in the t/ directory. Michael --- Michael Graham [EMAIL PROTECTED]

Re: kwalitee: drop Acme?

2005-09-10 Thread Michael Graham
dependencies, but that's probably not a big deal. If someone uses my module but doesn't list it in recommends, and I want my prereq point, then I'll bug them to add it. Michael --- Michael Graham [EMAIL PROTECTED]

Re: kwalitee: drop Acme?

2005-09-08 Thread Michael Graham
'is_prereq' point. Don't make us release this foolishness outside of ACME::! Michael --- Michael Graham [EMAIL PROTECTED]

Re: Kwalitee and has_test_*

2005-04-16 Thread Michael Graham
Michael Graham wrote: Another good reason to ship all of your development tests with code is that it makes it easer for users to submit patches with tests. Or to fork your code and retain all your development tools and methods. Perl::MinimumVersion, which doesn't exist yet, could check

YAPC::NA - call for (testing-related) papers

2005-04-14 Thread Michael Graham
be directed to [EMAIL PROTECTED] Michael --- Michael Graham [EMAIL PROTECTED] YAPC::NA 2005 Toronto - http://www.yapc.org/America/ - [EMAIL PROTECTED] ---

Re: Kwalitee and has_test_*

2005-04-08 Thread Michael Graham
are considered 'kwalitudinous' on my system. Maybe I don't know enough about testing and module development to know that the module still works fine in spite of the failed POD test. Michael --- Michael Graham [EMAIL PROTECTED] YAPC

Re: Kwalitee and has_test_*

2005-03-27 Thread Michael Graham
be a different way of marking additional private methods? Michael -- Michael Graham [EMAIL PROTECTED]

Re: Test::Builder-create

2005-03-10 Thread Michael Graham
($pid) { my $ret = waitpid($pid, 0); return $ret; } do $script or die Compile errors: $script: [EMAIL PROTECTED]; exit; } Michael -- Michael Graham [EMAIL PROTECTED]

Re: Test::Builder-create

2005-03-08 Thread Michael Graham
with it particuarly the Test::Builder::Tester guys. Would this make it possible to run many test scripts (each with its own plan) within the same perl process? 'Cos that would be nifty. Michael -- Michael Graham [EMAIL PROTECTED]

Re: Test::Builder-create

2005-03-08 Thread Michael Graham
to play with for a couple of hours. Michael -- Michael Graham [EMAIL PROTECTED]

prove -M (was Re: Differences between output of 'make test' and 'prove')

2004-11-05 Thread Michael Graham
use: $ cat runtests #!/bin/sh prove -I/path/to/modules -MTestConfig $* Which is (very) slightly cleaner. Michael -- Michael Graham [EMAIL PROTECTED]