Mercurial > hgsubversion
comparison tests/comprehensive/test_updatemeta.py @ 1044:d741f536f23a
tests: remove old test-loading infrastructure
(for those in the know, this is known as a suitectomy)
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Wed, 07 Aug 2013 16:00:52 +0200 |
parents | af84ef787d93 |
children | 903c9c9dfe6a |
comparison
equal
deleted
inserted
replaced
1043:69a9fb45cad5 | 1044:d741f536f23a |
---|---|
78 attrs[name] = test_rebuildmeta.buildmethod(case, name, True, False) | 78 attrs[name] = test_rebuildmeta.buildmethod(case, name, True, False) |
79 name = bname + '_single' | 79 name = bname + '_single' |
80 attrs[name] = test_rebuildmeta.buildmethod(case, name, False, True) | 80 attrs[name] = test_rebuildmeta.buildmethod(case, name, False, True) |
81 | 81 |
82 UpdateMetaTests = type('UpdateMetaTests', (test_util.TestBase,), attrs) | 82 UpdateMetaTests = type('UpdateMetaTests', (test_util.TestBase,), attrs) |
83 | |
84 | |
85 def suite(): | |
86 all_tests = [unittest.TestLoader().loadTestsFromTestCase(UpdateMetaTests), | |
87 ] | |
88 return unittest.TestSuite(all_tests) |