remove WebGUI::Utility::makeArrayTabSafe

This commit is contained in:
Graham Knop 2010-08-20 12:39:20 -05:00
parent 41201e5c4f
commit 55bd411e2c
3 changed files with 16 additions and 32 deletions

View file

@ -51,15 +51,6 @@ is(
'makeCommaSafe(): clearing tabs, newlines and carriage returns'
);
# makeArrayTabSafe -- modifies an array in place
my $tabbedArray = ["this\tthat", "these\nthose"];
WebGUI::Utility::makeArrayTabSafe($tabbedArray);
cmp_deeply(
$tabbedArray,
["this that", "these those"],
'makeArrayTabSafe'
);
# randint
my $number = WebGUI::Utility::randint(50,75);
ok($number >= 50 && $number <= 75, 'randint()');