File: strict.t

package info (click to toggle)
javatools 0.48%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 416 kB
  • ctags: 72
  • sloc: sh: 1,515; perl: 930; makefile: 35
file content (24 lines) | stat: -rwxr-xr-x 387 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/perl -w

use strict;
use warnings;

use Test::More;
eval 'use Test::Strict';
plan skip_all => 'Test::Strict required to run this test' if $@;

my @FILES = qw(
  jh_compilefeatures
  jh_generateorbitdir
  jh_installeclipse
  jh_manifest
  jh_scanjavadoc
  jh_setupenvironment
);

for my $file (@FILES) {
    syntax_ok($file);
    strict_ok($file);
}

all_perl_files_ok('lib');