Bug 34853: Add clearfix span to Invoice links
[koha.git] / xt / single_quotes.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright (C) 2013 Horowhenua Library Trust
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21 use Test::More tests => 1;
22 use File::Slurp qw( read_file );
23
24 my @files;
25
26 # OPAC
27 push @files, `git ls-files 'koha-tmpl/opac-tmpl/bootstrap/en/*.tt'`;
28 push @files, `git ls-files 'koha-tmpl/opac-tmpl/bootstrap/en/*.inc'`;
29
30 # Staff
31 push @files, `git ls-files 'koha-tmpl/intranet-tmpl/prog/en/*.tt'`;
32 push @files, `git ls-files 'koha-tmpl/intranet-tmpl/prog/en/*.inc'`;
33
34 my @errors;
35 for my $file ( @files ) {
36     chomp $file;
37     my @lines = sort grep /\_\(\'/, read_file($file);
38     push @errors, { name => $file, lines => \@lines } if @lines;
39 }
40
41 ok( !@errors, "Files do not contain single quotes _(' " )
42   or diag(
43     "Files list: \n",
44     join( "\n",
45         map { $_->{name} . ': ' . join( ', ', @{ $_->{lines} } ) } @errors )
46   );