File: 00-load.t

package info (click to toggle)
libfile-fu-perl 0.0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 244 kB
  • ctags: 165
  • sloc: perl: 1,421; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 327 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

use warnings;
use strict;

use Test::More tests => 1;

my $package = 'File::Fu';
eval("require $package");
my $err = $@;
ok(! $err, 'load ok');
if($err) {
  warn $err, "\n";
  BAIL_OUT("cannot load $package STOP!");
}

eval {require version};
diag("Testing $package ", $package->VERSION );

# vim:syntax=perl:ts=2:sw=2:et:sta