7 Basic tests of C<< %?CONFIG >>, the equivalent to
8 C<Config.pm>. Most of this is not yet even decided on,
9 so all of this test can become obsolete on Larrys whim C<:)>
11 Currently the test is hardcoded to check for the
12 following values in C<< %?CONFIG >>:
106 diag "Running under $*OS";
108 ok( defined %?CONFIG, '%?CONFIG is defined' );
109 ok( %?CONFIG.keys() > 0, '%?CONFIG contains keys and values' );
110 for @config -> $entry {
112 ok( defined %?CONFIG<<$entry>>, '%?CONFIG{'~$entry~'} exists');