mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +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
|
|
@ -34,11 +34,11 @@ class NetrcTestCase(unittest.TestCase):
|
|||
|
||||
def test_case_1(self):
|
||||
nrc = netrc.netrc(temp_filename)
|
||||
self.assert_(nrc.macros == {'macro1':['line1\n', 'line2\n'],
|
||||
self.assertTrue(nrc.macros == {'macro1':['line1\n', 'line2\n'],
|
||||
'macro2':['line3\n', 'line4\n']}
|
||||
)
|
||||
self.assert_(nrc.hosts['foo'] == ('log1', 'acct1', 'pass1'))
|
||||
self.assert_(nrc.hosts['default'] == ('log2', None, 'pass2'))
|
||||
self.assertTrue(nrc.hosts['foo'] == ('log1', 'acct1', 'pass1'))
|
||||
self.assertTrue(nrc.hosts['default'] == ('log2', None, 'pass2'))
|
||||
|
||||
def test_main():
|
||||
support.run_unittest(NetrcTestCase)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue