xref: /openbsd-src/gnu/usr.bin/perl/cpan/Module-Metadata/t/version.t (revision e5157e49389faebcb42b7237d55fbf096d9c2523)
1use strict;
2use warnings;
3use Test::More;
4use Module::Metadata;
5use lib "t/lib/0_2";
6
7plan tests => 4;
8
9require Foo;
10is $Foo::VERSION, 0.2;
11
12my $meta = Module::Metadata->new_from_module("Foo", inc => [ "t/lib/0_1" ] );
13is $meta->version, 0.1;
14
15is $Foo::VERSION, 0.2;
16
17ok eval "use Foo 0.2; 1";
18
19
20
21
22
23
24