Many fixes after CPANTESTERS report
[Config-Perl-V.git] / t / 10_base.t
bloba0a220c8dc97e193765fd676c2df6398ec32192c
1 #!/pro/bin/perl
3 use strict;
4 use warnings;
6 BEGIN {
7 use Test::More;
8 my $tests = 9;
9 unless ($ENV{PERL_CORE}) {
10 require Test::NoWarnings;
11 Test::NoWarnings->import ();
12 $tests++;
15 plan tests => $tests;
17 use_ok ("Config::Perl::V");
20 ok (my $conf = Config::Perl::V::myconfig, "Read config");
21 ok (exists $conf->{$_}, "Has $_ entry") for qw( build environment config inc );
22 is (lc $conf->{build}{osname}, lc $conf->{config}{osname}, "osname");
24 SKIP: {
25 # Test that the code that shells out to perl -V and parses the output
26 # gives the same results as the code that calls Config::* routines directly.
27 defined &Config::compile_date or
28 skip "This perl doesn't provide perl -V in the Config module", 2;
29 eval q{no warnings "redefine"; sub Config::compile_date { return undef }};
30 is (Config::compile_date (), undef, "Successfully overriden compile_date");
31 is_deeply (Config::Perl::V::myconfig, $conf,
32 "perl -V parsing code produces same result as the Config module");