The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# -*- perl -*-

# t/00.load.t - check module loading

use Test::More tests => 2;


BEGIN { use_ok( 'Data::Random' ); }

isnt $INC[0], '..', 'no longer corrupting @INC';


done_testing;