remove WebGUI::Utility::commify

This commit is contained in:
Graham Knop 2010-08-20 12:18:04 -05:00
parent 006a5003c2
commit 96004e50ac
4 changed files with 6 additions and 29 deletions

View file

@ -22,11 +22,6 @@ use Test::Deep;
my $session = WebGUI::Test->session;
# commify
is(WebGUI::Utility::commify(10), "10", 'commify() - no comma needed');
is(WebGUI::Utility::commify(1000), "1,000", 'commify() - single comma');
is(WebGUI::Utility::commify(10000000), "10,000,000", 'commify() - multiple commas');
# isBetween
ok(WebGUI::Utility::isBetween(0,-1,1), 'isBetween() - negative and positive range');
ok(WebGUI::Utility::isBetween(0,1,-1), 'isBetween() - negative and positive range, reversed');