From fcec2c71b4e362ffa7e1a443cdff9ace91761b9d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 9 Jun 2017 10:21:33 -0300 Subject: [PATCH] Bug 18746: Add license and remove diag Signed-off-by: Jonathan Druart --- xt/author/Text_CSV_Various.t | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/xt/author/Text_CSV_Various.t b/xt/author/Text_CSV_Various.t index 2ec49e0431..f7f8ff966e 100755 --- a/xt/author/Text_CSV_Various.t +++ b/xt/author/Text_CSV_Various.t @@ -1,18 +1,30 @@ #!/usr/bin/perl -use strict; -use warnings; +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with Koha; if not, see . + +#This test demonstrates why Koha uses the CSV parser and configration +#it does. Specifically, the test is for Unicode compliance in text +#parsing and data. This test requires other modules that Koha doesn't +#actually use, in order to compare. Therefore, running this test is not +#necessary to test your Koha installation. + +use Modern::Perl; use Test::More tests => 32; use Test::Warn; BEGIN { - diag q{ -This test demonstrates why Koha uses the CSV parser and configration -it does. Specifically, the test is for Unicode compliance in text -parsing and data. This test requires other modules that Koha doesn't -actually use, in order to compare. Therefore, running this test is not -necessary to test your Koha installation. -}; use FindBin; use lib $FindBin::Bin; use_ok('Text::CSV'); -- 2.11.0