On Fri, 14 Nov 2003, David Wheeler wrote: > You should use plan skip_all if you're not going to run any tests.
Right. > $ perl -MData::Dumper -MXML::SAX -e 'print Dumper(XML::SAX->parsers)' > could not find ParserDetails.ini in > /usr/local/lib/perl5/site_perl/5.8.0/XML/SAX > $VAR1 = []; It looks like you somehow managed to install XML::SAX without setting up ParserDetails.ini. Without that file, XML::SAX::ParserFactory can't find a parser. Even if you don't install any other SAX parsers, XML::SAX comes with XML::SAX::PurePerl which should be available... -sam
