Removed Utility test for base36, which no longer exists in WebGUI::Utility.pm

new i18n message for duplicate usernames.
This commit is contained in:
Colin Kuskie 2006-02-18 21:58:27 +00:00
parent e76ea86b52
commit 6fd7575eb9
5 changed files with 10 additions and 7 deletions

View file

@ -20,9 +20,6 @@ use Test::More tests => 22; # increment this value for each test you create
my $session = WebGUI::Test->session;
# base 36
is(WebGUI::Utility::fromBase36(WebGUI::Utility::toBase36(1234567890)), 1234567890, "{to/from}Base36()");
# commify
is(WebGUI::Utility::commify(10), "10", 'commify() - no comma needed');
is(WebGUI::Utility::commify(1000), "1,000", 'commify() - single comma');