# Class structure
require 5.004;
require Exporter;
- $Parse::CPAN::Meta::VERSION = '1.38';
+ $Parse::CPAN::Meta::VERSION = '1.39';
@Parse::CPAN::Meta::ISA = qw{ Exporter };
@Parse::CPAN::Meta::EXPORT_OK = qw{ Load LoadFile };
}
-Revision history for Perl extension Parse-CPAN-Meta
+Changes for Perl programming language extension Parse-CPAN-Meta
+
+1.39 Thu 21 May 2009
+ - Even though utf8 starts at 5.7+ there's no is_utf till
+ 5.8.1 so skip in the tests if needed (ADAMK)
1.38 Sat 16 May 2009
- Synchorised version numbers with YAML::Tiny
}
SKIP: {
- skip "no utf8 support", 1 unless Parse::CPAN::Meta::HAVE_UTF8();
+ unless ( Parse::CPAN::Meta::HAVE_UTF8() ) {
+ skip("no utf8 support", 1 );
+ }
+ eval { utf8::is_utf8('') };
+ if ( $@ ) {
+ skip("no is_utf8 to test with until 5.8.1", 1);
+ }
ok( utf8::is_utf8($yaml[0]->{author}), "utf8 decoded" );
}