This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Document string- and number-specific bitops in perlop
[perl5.git] / dist / Storable / t / robust.t
CommitLineData
6fe613da
FC
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;