Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
awit-frameworks
awit-perl-toolkit
Commits
b30f69f3
Commit
b30f69f3
authored
Sep 14, 2016
by
Nigel Kukard
Browse files
Added CI tests for isDomain()
parent
6944c201
Changes
1
Hide whitespace changes
Inline
Side-by-side
t/isdomain.t
0 → 100644
View file @
b30f69f3
# Test harness for isDomain
# Copyright (C) 2014-2016, AllWorldIT
#
# This program 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 2 of the License, or
# (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use
Test::
More
;
use
strict
;
use
warnings
;
use
AWITPT::
Util
;
use
AWITPT::
Object
;
my
$hash
=
{
'
makeHash
'
=>
1
};
my
$object
=
AWITPT::
Object
->
new
();
is
(
isDomain
(
0
),
0
,"
Check 0 returns 0
");
is
(
isDomain
('
0
'),
0
,"
Check 0 returns 0
");
is
(
isDomain
(
$hash
),
undef
,"
Check HASH returns 0
");
is
(
isDomain
(
$object
),
undef
,"
Check OBJECT returns 0
");
is
(
isDomain
("
example
"),"
example
","
Check 'example' returns 0
");
is
(
isDomain
("
example.com
"),"
example.com
","
Check 'example.com' returns 1
");
done_testing
();
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment