From: Mischa POSLAWSKY Date: Sun, 1 Jun 2008 10:14:50 +0000 (+0000) Subject: require Test::YAML::Meta 0.10 for correct testing X-Git-Tag: 3.22~2 X-Git-Url: http://git.shiar.net/perl/plp/.git/commitdiff_plain/eb35960841709b828643bdf9792ecf627f0a1349 require Test::YAML::Meta 0.10 for correct testing Versions upto the current 0.09 do not parse repository resource url correctly (Unknown protocol used in URL (git://)). This will most likely be fixed in the next version. Addendum: confirmed by BARBIE 2008-06-02 10:34:18 GMT: > Added 'git' as a valid url protocol in: > Test-YAML-Meta-0.10 --- diff --git a/t/91-meta.t b/t/91-meta.t index 8d65d18..d5e720b 100644 --- a/t/91-meta.t +++ b/t/91-meta.t @@ -3,7 +3,9 @@ use warnings; use Test::More; eval 'use Test::YAML::Meta'; -plan skip_all => "Test::YAML::Meta required for testing META.yml" if $@; +plan skip_all => "Test::YAML::Meta required to test META.yml" if $@; +plan skip_all => "Test::YAML::Meta v0.10 required to test META.yml correctly" + if $Test::YAML::Meta::VERSION < 0.10; meta_yaml_ok();