X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=t%2F62-multi.t;h=df57486bed2efb638db67a398433749357d5ef00;hp=6c9e1e92f826c7f646ea2508afac7745a2fbf1c0;hb=1d172fc510f2ed15a00d475073f6df964b398484;hpb=72628dc786ef43d546023d6f17a86c3f5edeb21a diff --git a/t/62-multi.t b/t/62-multi.t index 6c9e1e9..df57486 100644 --- a/t/62-multi.t +++ b/t/62-multi.t @@ -1,8 +1,8 @@ -use Test::More tests => 3; - use strict; use warnings; +use Test::More tests => 3; + use Config::Any; use Config::Any::YAML; @@ -19,7 +19,7 @@ my @expect = ( my @results = eval { Config::Any::YAML->load( $file ); }; SKIP: { - skip "Can't load YAML files", 3 if $@; + skip "Can't load multi-stream YAML files", 3 if $@; is( @results, 2, '2 documents' ); is_deeply( \@results, \@expect, 'structures ok' );