The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

# This test script checks that Storable will load properly if someone
# is incorrectly messing with %INC to hide Log::Agent.  No, no-one should
# really be doing this, but, then, it *used* to work!

use Test::More;
plan tests => 1;

$INC{'Log/Agent.pm'} = '#ignore#';
require Storable;
pass;