mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
convert old fail* assertions to assert*
This commit is contained in:
parent
98d23f2e06
commit
c9c0f201fe
275 changed files with 4540 additions and 4540 deletions
|
|
@ -31,7 +31,7 @@ class PyclbrTest(TestCase):
|
|||
''' succeed iff hasattr(obj,attr) or attr in ignore. '''
|
||||
if attr in ignore: return
|
||||
if not hasattr(obj, attr): print("???", attr)
|
||||
self.failUnless(hasattr(obj, attr),
|
||||
self.assertTrue(hasattr(obj, attr),
|
||||
'expected hasattr(%r, %r)' % (obj, attr))
|
||||
|
||||
|
||||
|
|
@ -40,7 +40,7 @@ class PyclbrTest(TestCase):
|
|||
if key in ignore: return
|
||||
if key not in obj:
|
||||
print("***",key, file=sys.stderr)
|
||||
self.failUnless(key in obj, "%r in %r" % (key, obj))
|
||||
self.assertTrue(key in obj, "%r in %r" % (key, obj))
|
||||
|
||||
def assertEqualsOrIgnored(self, a, b, ignore):
|
||||
''' succeed iff a == b or a in ignore or b in ignore '''
|
||||
|
|
@ -84,12 +84,12 @@ class PyclbrTest(TestCase):
|
|||
self.assertHasattr(module, name, ignore)
|
||||
py_item = getattr(module, name)
|
||||
if isinstance(value, pyclbr.Function):
|
||||
self.assert_(isinstance(py_item, (FunctionType, BuiltinFunctionType)))
|
||||
self.assertTrue(isinstance(py_item, (FunctionType, BuiltinFunctionType)))
|
||||
if py_item.__module__ != moduleName:
|
||||
continue # skip functions that came from somewhere else
|
||||
self.assertEquals(py_item.__module__, value.module)
|
||||
else:
|
||||
self.failUnless(isinstance(py_item, type))
|
||||
self.assertTrue(isinstance(py_item, type))
|
||||
if py_item.__module__ != moduleName:
|
||||
continue # skip classes that came from somewhere else
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue