Mercurial > hgsubversion
comparison tests/test_startrev.py @ 851:9ce00cb1d676
Merge alternate tunnel schemes.
| author | Augie Fackler <durin42@gmail.com> |
|---|---|
| date | Sat, 25 Feb 2012 14:51:22 -0600 |
| parents | 312b37bc5e20 |
| children | d4312a6f7a87 |
comparison
equal
deleted
inserted
replaced
| 850:d3bc067c0f72 | 851:9ce00cb1d676 |
|---|---|
| 59 bname = 'test_' + case[:-len('.svndump')] | 59 bname = 'test_' + case[:-len('.svndump')] |
| 60 attrs[bname] = buildmethod(case, bname, subdir, False) | 60 attrs[bname] = buildmethod(case, bname, subdir, False) |
| 61 name = bname + '_stupid' | 61 name = bname + '_stupid' |
| 62 attrs[name] = buildmethod(case, name, subdir, True) | 62 attrs[name] = buildmethod(case, name, subdir, True) |
| 63 | 63 |
| 64 StartRevTests = type('StartRevTests', (test_util.TestBase, ), attrs) | 64 StartRevTests = type('StartRevTests', (test_util.TestBase,), attrs) |
| 65 | 65 |
| 66 | 66 |
| 67 def suite(): | 67 def suite(): |
| 68 all = [unittest.TestLoader().loadTestsFromTestCase(StartRevTests), | 68 all_tests = [unittest.TestLoader().loadTestsFromTestCase(StartRevTests), |
| 69 ] | 69 ] |
| 70 return unittest.TestSuite(all) | 70 return unittest.TestSuite(all_tests) |
