View | Details | Raw Unified | Return to bug 8383
Collapse All | Expand All

(-)a/t/db_dependent/00-strict.pl (-1 / +24 lines)
Line 0 Link Here
0
- 
1
# This script is called by the pre-commit git hook to test modules compile
2
3
use strict;
4
use warnings;
5
use Test::More;
6
use Test::Strict;
7
use File::Spec;
8
use File::Find;
9
use lib("misc/translator");
10
use lib("installer");
11
12
my @dirs = ( 'acqui', 'admin', 'authorities', 'basket',
13
    'catalogue', 'cataloguing', 'changelanguage.pl', 'circ', 'debian', 'docs',
14
    'edithelp.pl', 'errors', 'fix-perl-path.PL', 'help.pl', 'installer',
15
    'koha_perl_deps.pl', 'kohaversion.pl', 'labels',
16
    'mainpage.pl', 'Makefile.PL', 'members', 'misc', 'offline_circ', 'opac',
17
    'patroncards', 'reports', 'reserve', 'resetversion.pl', 'reviews',
18
    'rewrite-config.PL', 'rotating_collections', 'serials', 'services', 'skel',
19
    'sms', 'suggestion', 'svc', 'tags', 'tools', 'virtualshelves' );
20
21
$Test::Strict::TEST_STRICT = 0;
22
$Test::Strict::TEST_SKIP = [ 'misc/kohalib.pl', 'sms/sms_listen_windows_start.pl' ];
23
24
all_perl_files_ok(@dirs);

Return to bug 8383