9 unless ($ENV{PERL_CORE
}) {
10 require Test
::NoWarnings
;
11 Test
::NoWarnings
->import ();
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");
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");