File: 00.load.t

package info (click to toggle)
libdata-random-perl 0.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 684 kB
  • sloc: perl: 405; sh: 11; makefile: 10
file content (13 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- 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;