summaryrefslogtreecommitdiff
path: root/t/maxconns.t
diff options
context:
space:
mode:
authorPaul Lindner <plindner@hi5.com>2007-05-12 11:10:17 +0000
committerPaul Lindner <plindner@hi5.com>2007-05-12 11:10:17 +0000
commit7b573c21969d08de2d99eefbef0ddb40fa0af8c9 (patch)
treef05987993d1c4c82046700f8a263868e236c744b /t/maxconns.t
parent0aeb6121f4eee200bc4b52e049ec2b46e1869902 (diff)
downloadmemcached-7b573c21969d08de2d99eefbef0ddb40fa0af8c9.tar.gz
updated unit tests, better spec file
git-svn-id: http://code.sixapart.com/svn/memcached/trunk/server@557 b0b603af-a30f-0410-a34e-baf09ae79d0b
Diffstat (limited to 't/maxconns.t')
-rwxr-xr-xt/maxconns.t12
1 files changed, 1 insertions, 11 deletions
diff --git a/t/maxconns.t b/t/maxconns.t
index acf5021..d30966a 100755
--- a/t/maxconns.t
+++ b/t/maxconns.t
@@ -3,7 +3,7 @@
use strict;
use warnings;
-use Test::More tests => 21;
+use Test::More tests => 11;
use FindBin qw($Bin);
use lib "$Bin/lib";
@@ -24,13 +24,3 @@ foreach my $conn (1..10) {
ok(defined($sock), "Made connection $conn");
push(@sockets, $sock);
}
-
-TODO: {
-local $TODO = "Need to decide on what -c semantics are";
-
-foreach my $conn (11..20) {
- $sock = $server->new_sock;
- ok(defined($sock), "Connection $conn");
- push(@sockets, $sock);
-}
-}