Bug 17047: Compiled CSS
[koha.git] / xt / single_quotes.t
index 75681d1..4c6a9e8 100755 (executable)
@@ -17,8 +17,7 @@
 # You should have received a copy of the GNU General Public License
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 
-use warnings;
-use strict;
+use Modern::Perl;
 use Test::More tests => 1;
 use File::Find;
 
@@ -27,7 +26,7 @@ my @themes;
 # OPAC themes
 my $opac_dir  = 'koha-tmpl/opac-tmpl';
 opendir ( my $dh, $opac_dir ) or die "can't opendir $opac_dir: $!";
-for my $theme ( grep { not /^\.|lib|js/ } readdir($dh) ) {
+for my $theme ( grep { not /^\.|lib|js|xslt/ } readdir($dh) ) {
     push @themes, "$opac_dir/$theme/en";
 }
 close $dh;