The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/usr/bin/perl -w
# Copyright 2008, 2009, 2010, 2013, 2015 Kevin Ryde
# This file is part of HTML-FormatExternal.
#
# HTML-FormatExternal 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, or (at your option) any
# later version.
#
# HTML-FormatExternal 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 HTML-FormatExternal. If not, see <http://www.gnu.org/licenses/>.
use strict;
use Test::More tests => 10;
use lib 't';
BEGIN { MyTestHelpers::nowarnings() }
{
my $want_version = 24;
is ($HTML::FormatText::Elinks::VERSION, $want_version,
'VERSION variable');
is (HTML::FormatText::Elinks->VERSION, $want_version,
'VERSION class method');
ok (eval { HTML::FormatText::Elinks->VERSION($want_version); 1 },
"VERSION class check $want_version");
my $check_version = $want_version + 1000;
ok (! eval { HTML::FormatText::Elinks->VERSION($check_version); 1 },
"VERSION class check $check_version");
my $formatter = HTML::FormatText::Elinks->new;
is ($formatter->VERSION, $want_version, 'VERSION object method');
ok (eval { $formatter->VERSION($want_version); 1 },
"VERSION object check $want_version");
ok (! eval { $formatter->VERSION($check_version); 1 },
"VERSION object check $check_version");
}
## no critic (ProtectPrivateSubs)
#-----------------------------------------------------------------------------
# _quote_config_stringarg()
foreach my $data (['', "''"],
['abc', "'abc'"],
["x'y'z", "'x\\'y\\'z'"],
) {
my ($str, $want) = @$data;
is (HTML::FormatText::Elinks::_quote_config_stringarg($str),
$want,
"_quote_config_stringarg() '$str'");
}
exit 0;