skip xml failure tests if XML::LibXML < 1.59 is installed, it seems to parse anything...
Brian Cassidy [Wed, 6 Aug 2008 13:40:03 +0000 (13:40 +0000)]
Changes
lib/Config/Any.pm
t/54-xml.t

diff --git a/Changes b/Changes
index 487dea3..0512418 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Config-Any
 
+0.14 XXX
+    - skip xml failure tests if XML::LibXML < 1.59 is installed, it seems
+      to parse anything you throw at it (Matt S. Trout)
+
 0.13 Tue 05 Aug 2008
     - show actual parse error when parse fails (Marcus Ramberg)
     - ensure Config::Tiny parse errors are trapped
index de8f6fa..c4de85b 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 use Carp;
 use Module::Pluggable::Object ();
 
-our $VERSION = '0.13';
+our $VERSION = '0.14';
 
 =head1 NAME
 
index 0f7514a..41376ac 100644 (file)
@@ -18,7 +18,11 @@ else {
 }
 
 # test invalid config
-{
+SKIP: {
+    my $broken_libxml = eval { require XML::LibXML; XML::LibXML->VERSION lt '1.59'; };
+    skip 'XML::LibXML < 1.58 has issues', 2 if $broken_libxml;
+
+    local $SIG{__WARN__} = sub {}; # squash warnings from XML::Simple
     my $file = 't/invalid/conf.xml';
     my $config = eval { Config::Any::XML->load( $file ) };