Add tests for pickletools.optimize().
This commit is contained in:
parent
6bf51da9d4
commit
21290eacf6
|
@ -1,3 +1,24 @@
|
|||
import pickle
|
||||
import pickletools
|
||||
from test import test_support
|
||||
test_support.run_doctest(pickletools)
|
||||
from test.pickletester import AbstractPickleTests
|
||||
from test.pickletester import AbstractPickleModuleTests
|
||||
|
||||
class OptimizedPickleTests(AbstractPickleTests, AbstractPickleModuleTests):
|
||||
|
||||
def dumps(self, arg, proto=0, fast=0):
|
||||
return pickletools.optimize(pickle.dumps(arg, proto))
|
||||
|
||||
def loads(self, buf):
|
||||
return pickle.loads(buf)
|
||||
|
||||
module = pickle
|
||||
error = KeyError
|
||||
|
||||
def test_main():
|
||||
test_support.run_unittest(OptimizedPickleTests)
|
||||
test_support.run_doctest(pickletools)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_main()
|
||||
|
|
Loading…
Reference in New Issue