Update the number of tests in t/Utility.t

This commit is contained in:
Colin Kuskie 2010-08-25 11:46:05 -07:00
parent 18900b72ff
commit a28dffd4c4

View file

@ -17,7 +17,7 @@ use Tie::IxHash;
use WebGUI::Test;
use WebGUI::Session;
use Test::More tests => 57; # increment this value for each test you create
use Test::More tests => 2; # increment this value for each test you create
use Test::Deep;
my $session = WebGUI::Test->session;
@ -36,12 +36,6 @@ ok(WebGUI::Utility::isIn("webgui", qw(cars trucks webgui trains)), 'isIn()');
is_deeply([keys %hash2], [qw/e c b d a/], 'sortHash');
}
TODO: {
local $TODO = 'Things to do';
ok(0, 'Move email validation tests out of Form/Email into here');
}
# Local variables:
# mode: cperl
# End: