예제 #1
0
 def test_raise_attribute_error_for_setstate(self):
     with self.assertRaises(AttributeError):
         utils.raise_attribute_for_copy('Test', '__setstate__')
예제 #2
0
 def test_raise_attribute_error_for_getnewargs(self):
     with self.assertRaises(AttributeError):
         utils.raise_attribute_for_copy('Test', '__getnewargs__')
예제 #3
0
 def test_raise_attribute_error_for_deepcopy(self):
     with self.assertRaises(AttributeError):
         utils.raise_attribute_for_copy('Test', '__deepcopy__')
예제 #4
0
 def test_raise_attribute_error_for_getstate(self):
     with self.assertRaises(AttributeError):
         utils.raise_attribute_for_copy("Test", "__getstate__")
예제 #5
0
파일: test_utils.py 프로젝트: kayak/pypika
 def test_raise_attribute_error_for_getnewargs(self):
     with self.assertRaises(AttributeError):
         utils.raise_attribute_for_copy('Test', '__getnewargs__')
예제 #6
0
파일: test_utils.py 프로젝트: kayak/pypika
 def test_raise_attribute_error_for_setstate(self):
     with self.assertRaises(AttributeError):
         utils.raise_attribute_for_copy('Test', '__setstate__')
예제 #7
0
파일: test_utils.py 프로젝트: kayak/pypika
 def test_raise_attribute_error_for_deepcopy(self):
     with self.assertRaises(AttributeError):
         utils.raise_attribute_for_copy('Test', '__deepcopy__')