Subject: | t/00-load.t uses %Config::Config without loading Config module |
t/00-load.t does:
local $ENV{PERL5LIB} = join $Config::Config{path_sep} || ';', @INC;
but the code does not use or require the Config module before. It runs only because one of the four modules loaded directly loads Config (directly or indirectly).
I recommend to "require Config"; to fix it.