xref: /openbsd/gnu/usr.bin/perl/dist/Storable/t/robust.t (revision d89ec533)
1#!/usr/bin/perl
2
3# This test script checks that Storable will load properly if someone
4# is incorrectly messing with %INC to hide Log::Agent.  No, no-one should
5# really be doing this, but, then, it *used* to work!
6
7use Test::More;
8plan tests => 1;
9
10$INC{'Log/Agent.pm'} = '#ignore#';
11require Storable;
12pass;
13