File: 01-use-ok.t

package info (click to toggle)
libfindbin-libs-perl 4.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 704 kB
  • sloc: perl: 1,323; sh: 38; makefile: 7
file content (22 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package Testophile;

use v5.8;

use Test::More;

my @modz    
= qw
(
    FindBin::Bin 
    FindBin::Parents
    FindBin::libs
);

note "INC is:\n" => explain \@INC;

require_ok  $_, "'$_' required" for @modz;
use_ok      $_,                 for @modz;

done_testing;

__END__