Blame t/robust.t

Packit 14c646
#!/usr/bin/perl
Packit 14c646
Packit 14c646
# This test script checks that Storable will load properly if someone
Packit 14c646
# is incorrectly messing with %INC to hide Log::Agent.  No, no-one should
Packit 14c646
# really be doing this, but, then, it *used* to work!
Packit 14c646
Packit 14c646
use Test::More;
Packit 14c646
plan tests => 1;
Packit 14c646
Packit 14c646
$INC{'Log/Agent.pm'} = '#ignore#';
Packit 14c646
require Storable;
Packit 14c646
pass;