[Python-checkins] r68347 - sandbox/trunk/io-c/test_io.py
antoine.pitrou
python-checkins at python.org
Mon Jan 5 21:03:34 CET 2009
Author: antoine.pitrou
Date: Mon Jan 5 21:03:33 2009
New Revision: 68347
Log:
fix BufferedRandomTest.test_constructor to call both base classes
Modified:
sandbox/trunk/io-c/test_io.py
Modified: sandbox/trunk/io-c/test_io.py
==============================================================================
--- sandbox/trunk/io-c/test_io.py (original)
+++ sandbox/trunk/io-c/test_io.py Mon Jan 5 21:03:33 2009
@@ -714,6 +714,10 @@
read_mode = "rb+"
write_mode = "wb+"
+ def testConstructor(self):
+ BufferedReaderTest.testConstructor(self)
+ BufferedWriterTest.testConstructor(self)
+
def testReadAndWrite(self):
raw = MockRawIO((b"asdf", b"ghjk"))
rw = self.tp(raw, 8, 12)
More information about the Python-checkins
mailing list