File: 01modules.t

package info (click to toggle)
pbnj 2.04-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 640 kB
  • ctags: 309
  • sloc: perl: 4,838; xml: 748; sh: 109; makefile: 37
file content (8 lines) | stat: -rwxr-xr-x 283 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#!/usr/bin/perl
# Test the loadability of our modules
use Test::More qw(no_plan);
my @modules = qw(File::HomeDir FileHandle Getopt::Long Sys::Hostname Net::hostent Text::CSV_XS DBI DBD::SQLite YAML XML::Twig Nmap::Parser File::Which);
for my $m (@modules){
   use_ok($m);
}