mirror of
https://github.com/python/cpython.git
synced 2025-11-01 14:11:41 +00:00
imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
40 lines
977 B
Python
40 lines
977 B
Python
import pickle
|
|
import unittest
|
|
from cStringIO import StringIO
|
|
from pickletester import AbstractPickleTests, AbstractPickleModuleTests
|
|
from test import test_support
|
|
|
|
class PickleTests(AbstractPickleTests, AbstractPickleModuleTests):
|
|
|
|
def setUp(self):
|
|
self.dumps = pickle.dumps
|
|
self.loads = pickle.loads
|
|
|
|
module = pickle
|
|
error = KeyError
|
|
|
|
class PicklerTests(AbstractPickleTests):
|
|
|
|
error = KeyError
|
|
|
|
def dumps(self, arg, bin=0):
|
|
f = StringIO()
|
|
p = pickle.Pickler(f, bin)
|
|
p.dump(arg)
|
|
f.seek(0)
|
|
return f.read()
|
|
|
|
def loads(self, buf):
|
|
f = StringIO(buf)
|
|
u = pickle.Unpickler(f)
|
|
return u.load()
|
|
|
|
def test_main():
|
|
loader = unittest.TestLoader()
|
|
suite = unittest.TestSuite()
|
|
suite.addTest(loader.loadTestsFromTestCase(PickleTests))
|
|
suite.addTest(loader.loadTestsFromTestCase(PicklerTests))
|
|
test_support.run_suite(suite)
|
|
|
|
if __name__ == "__main__":
|
|
test_main()
|