On 10/3/06, Joshua ben Jore <[EMAIL PROTECTED]> wrote:
Fine, I just didn't feel like inventing a list on the spot. There's a list of values we know perl uses internally. I see David missed LANGUAGE, LC_ALL, and LANG. You'd want to be careful not to do qr/^PERL/ because MACPERL doesn't match that pattern.
I said qr/perl/ for that reason.
* AUTHOR_TESTING Is AUTHOR_TESTING a blessed name? I didn't know of one so I started using AUTHOR_TESTS. I'd switch if I knew to use that.
There is no "blessing" per se. I picked that up from somewhere and use if for my pod/pod-coverage tests. As Schwern said, it would be better written as "PERL_AUTHOR_TESTING" or something. I'll probably switch to that going forward. Given what you use, perhaps qr/AUTHOR_TEST/ is a good idea. David Josh