Checking version 0.01
[Config-Perl-V.git] / t / 10_base.t
blob02f2c4675158bf8b7b624f583ad140e74f216d69
1 #!/pro/bin/perl
3 use strict;
4 use warnings;
6 use Test::More tests => 8;
7 use Test::NoWarnings;
9 BEGIN {
10 use_ok ("Config::Perl::V");
13 ok (my $conf = Config::Perl::V::myconfig, "Read config");
14 for (qw( build environment config inc )) {
15 ok (exists $conf->{build}, "Has build entry");
17 is ($conf->{build}{osname}, $conf->{config}{osname}, "osname");