Dot is the directory delimiter on VMS, so it's awkward at best to use it
in directory names. Blead commit
4eb81ef279, "Update Module-Metadata to
CPAN version 1.000005" introduced two new directories with dots in the
name, which confused the manifest checker and broke the build on VMS.
+ - Apply VMS fixes backported from blead (Craig A. Berry)
+
1.0.6 2011-08-29 04:00:00
- Support PACKAGE BLOCK syntax (VPIT)
use strict;
use Test::More;
use Module::Metadata;
-use lib "t/lib/0.2";
+use lib "t/lib/0_2";
plan tests => 4;
require Foo;
is $Foo::VERSION, 0.2;
-my $meta = Module::Metadata->new_from_module("Foo", inc => [ "t/lib/0.1" ] );
+my $meta = Module::Metadata->new_from_module("Foo", inc => [ "t/lib/0_1" ] );
is $meta->version, 0.1;
is $Foo::VERSION, 0.2;