X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fversion.t;h=e523f97a0f4f45e9f341fe20bd0df902c4ff3a6b;hb=topic%2Ffix_provides_files;hp=4acc35812b929378b14fde6dcd2961f0576ccef5;hpb=398fe5a24070a54c6c4ce6466f37904f6cc37405;p=p5sagit%2FModule-Metadata.git diff --git a/t/version.t b/t/version.t index 4acc358..e523f97 100644 --- a/t/version.t +++ b/t/version.t @@ -1,14 +1,15 @@ use strict; +use warnings; 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;