Bug 12653: (RM followup) Fix the test count
authorTomas Cohen Arazi <tomascohen@gmail.com>
Wed, 29 Oct 2014 23:40:37 +0000 (20:40 -0300)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Wed, 29 Oct 2014 23:43:52 +0000 (20:43 -0300)
Bug 12233 removed the prog and CCSR theme directories, so the number
of tests needs to be fixed.

Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>

xt/author/icondirectories.t

index 08f1368..e5b0039 100644 (file)
@@ -28,14 +28,13 @@ ensures that they are.
 
 =cut
 
-use strict;
-use warnings;
+use Modern::Perl;
 
 use lib qw( .. );
 
 use Data::Dumper;
 use File::Find;
-use Test::More tests => 6;
+use Test::More tests => 3;
 
 # hardcoded OPAC & STAFF dirs
 my $opac_dir  = 'koha-tmpl/opac-tmpl';
@@ -92,3 +91,4 @@ for my $staff_theme ( @staff_themes ) {
     }
 }
 
+1;