remove WebGUI::Utility::randomizeArray

This commit is contained in:
Graham Knop 2010-08-20 12:43:40 -05:00
parent f68ac24495
commit c1132e4298
2 changed files with 1 additions and 26 deletions

View file

@ -34,12 +34,6 @@ ok($number >= 0 && $number <= 1, 'randint() with default params');
my $number = WebGUI::Utility::randint(10,5);
ok($number >= 5 && $number <= 10, 'randint() auto reverses params if they are backwards');
# randomizeArray
SKIP: {
skip("Don't know how to test randomizeArray.",1);
ok(undef, 'randomizeArray()');
}
# round
is(WebGUI::Utility::round(47.133984233, 0), 47, 'round() - 0 significant digits');
is(WebGUI::Utility::round(47.133984233, 3), 47.134, 'round() - multiple significant digits');