allow YAML::Syck to fail the error tests
Graham Knop [Sun, 23 Apr 2017 21:45:31 +0000 (23:45 +0200)]
t/55-yaml.t

index 907d576..890baa0 100644 (file)
@@ -31,6 +31,8 @@ else {
 
 # test invalid config
 {
+    local $TODO = 'YAML::Syck parses invalid files'
+        if $INC{'YAML/Syck.pm'};
     my $file = 't/invalid/conf.yml';
     my $config = eval { Config::Any::YAML->load( $file ) };
 
@@ -41,6 +43,8 @@ else {
 
 # parse error generated on invalid config
 {
+    local $TODO = 'YAML::Syck parses invalid files'
+        if $INC{'YAML/Syck.pm'};
     my $file = 't/invalid/conf.yml';
     my $config = eval { Config::Any->load_files( { files => [$file], use_ext => 1} ) };