The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910111213 # -*- perl -*-# t/00.load.t - check module loadinguse Test::More tests => 2;BEGIN { use_ok( 'Data::Random' ); }isnt $INC[0], '..', 'no longer corrupting @INC';done_testing;
# -*- 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;