2000-10-11 22:17:35 +00:00
|
|
|
import copy_reg
|
2001-05-22 20:38:44 +00:00
|
|
|
import unittest
|
2002-07-23 19:04:11 +00:00
|
|
|
from test import test_support
|
2001-05-22 20:38:44 +00:00
|
|
|
|
2000-10-11 22:17:35 +00:00
|
|
|
|
|
|
|
class C:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2001-05-22 20:38:44 +00:00
|
|
|
class CopyRegTestCase(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_class(self):
|
|
|
|
self.assertRaises(TypeError, copy_reg.pickle,
|
|
|
|
C, None, None)
|
|
|
|
|
|
|
|
def test_noncallable_reduce(self):
|
|
|
|
self.assertRaises(TypeError, copy_reg.pickle,
|
|
|
|
type(1), "not a callable")
|
|
|
|
|
|
|
|
def test_noncallable_constructor(self):
|
|
|
|
self.assertRaises(TypeError, copy_reg.pickle,
|
|
|
|
type(1), int, "not a callable")
|
|
|
|
|
2003-01-26 11:32:44 +00:00
|
|
|
def test_bool(self):
|
|
|
|
import copy
|
|
|
|
self.assertEquals(True, copy.copy(True))
|
|
|
|
|
2001-05-22 20:38:44 +00:00
|
|
|
|
2001-09-20 21:33:42 +00:00
|
|
|
def test_main():
|
|
|
|
test_support.run_unittest(CopyRegTestCase)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|