diff options
author | Guido van Rossum <guido@python.org> | 2002-08-22 20:22:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-08-22 20:22:16 (GMT) |
commit | ae4693129a49cf4ab9feff33c4658873e85f2083 (patch) | |
tree | 4818906e1fad09a3c63e7206977954c34532a106 /Lib/test/test_timeout.py | |
parent | 9eee554bd9cff22eea0e39dd107576f0ef93e108 (diff) | |
download | cpython-ae4693129a49cf4ab9feff33c4658873e85f2083.zip cpython-ae4693129a49cf4ab9feff33c4658873e85f2083.tar.gz cpython-ae4693129a49cf4ab9feff33c4658873e85f2083.tar.bz2 |
Standardize behavior: no docstrings in test functions.
Diffstat (limited to 'Lib/test/test_timeout.py')
-rw-r--r-- | Lib/test/test_timeout.py | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Lib/test/test_timeout.py b/Lib/test/test_timeout.py index 57185a2..a8a935f 100644 --- a/Lib/test/test_timeout.py +++ b/Lib/test/test_timeout.py @@ -17,12 +17,12 @@ class CreationTestCase(unittest.TestCase): self.sock.close() def testObjectCreation(self): - "Test Socket creation" + # Test Socket creation self.assertEqual(self.sock.gettimeout(), None, "timeout not disabled by default") def testFloatReturnValue(self): - "Test return value of gettimeout()" + # Test return value of gettimeout() self.sock.settimeout(7.345) self.assertEqual(self.sock.gettimeout(), 7.345) @@ -33,7 +33,7 @@ class CreationTestCase(unittest.TestCase): self.assertEqual(self.sock.gettimeout(), None) def testReturnType(self): - "Test return type of gettimeout()" + # Test return type of gettimeout() self.sock.settimeout(1) self.assertEqual(type(self.sock.gettimeout()), type(1.0)) @@ -41,7 +41,7 @@ class CreationTestCase(unittest.TestCase): self.assertEqual(type(self.sock.gettimeout()), type(1.0)) def testTypeCheck(self): - "Test type checking by settimeout()" + # Test type checking by settimeout() self.sock.settimeout(0) self.sock.settimeout(0L) self.sock.settimeout(0.0) @@ -54,13 +54,13 @@ class CreationTestCase(unittest.TestCase): self.assertRaises(TypeError, self.sock.settimeout, 0j) def testRangeCheck(self): - "Test range checking by settimeout()" + # Test range checking by settimeout() self.assertRaises(ValueError, self.sock.settimeout, -1) self.assertRaises(ValueError, self.sock.settimeout, -1L) self.assertRaises(ValueError, self.sock.settimeout, -1.0) def testTimeoutThenBlocking(self): - "Test settimeout() followed by setblocking()" + # Test settimeout() followed by setblocking() self.sock.settimeout(10) self.sock.setblocking(1) self.assertEqual(self.sock.gettimeout(), None) @@ -74,7 +74,7 @@ class CreationTestCase(unittest.TestCase): self.assertEqual(self.sock.gettimeout(), None) def testBlockingThenTimeout(self): - "Test setblocking() followed by settimeout()" + # Test setblocking() followed by settimeout() self.sock.setblocking(0) self.sock.settimeout(1) self.assertEqual(self.sock.gettimeout(), 1) @@ -98,7 +98,7 @@ class TimeoutTestCase(unittest.TestCase): self.sock.close() def testConnectTimeout(self): - "Test connect() timeout" + # Test connect() timeout _timeout = 0.02 self.sock.settimeout(_timeout) @@ -113,7 +113,7 @@ class TimeoutTestCase(unittest.TestCase): %(_delta, self.fuzz, _timeout)) def testRecvTimeout(self): - "Test recv() timeout" + # Test recv() timeout _timeout = 0.02 self.sock.connect(self.addr_remote) self.sock.settimeout(_timeout) @@ -128,7 +128,7 @@ class TimeoutTestCase(unittest.TestCase): %(_delta, self.fuzz, _timeout)) def testAcceptTimeout(self): - "Test accept() timeout" + # Test accept() timeout _timeout = 2 self.sock.settimeout(_timeout) self.sock.bind(self.addr_local) @@ -144,7 +144,7 @@ class TimeoutTestCase(unittest.TestCase): %(_delta, self.fuzz, _timeout)) def testRecvfromTimeout(self): - "Test recvfrom() timeout" + # Test recvfrom() timeout _timeout = 2 self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) self.sock.settimeout(_timeout) @@ -160,17 +160,17 @@ class TimeoutTestCase(unittest.TestCase): %(_delta, self.fuzz, _timeout)) def testSend(self): - "Test send() timeout" + # Test send() timeout # couldn't figure out how to test it pass def testSendto(self): - "Test sendto() timeout" + # Test sendto() timeout # couldn't figure out how to test it pass def testSendall(self): - "Test sendall() timeout" + # Test sendall() timeout # couldn't figure out how to test it pass |