Upped copyright to 2011
[Config-Perl-V.git] / t / 10_base.t
blobb633c73af4247d7f0ffdf359503a7ff90ed1ef62
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 (lc $conf->{build}{osname}, lc $conf->{config}{osname}, "osname");