Mercurial > hgsubversion
comparison tests/comprehensive/test_stupid_pull.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 | 7d9cd708f412 |
children | 903c9c9dfe6a |
comparison
equal
deleted
inserted
replaced
1043:69a9fb45cad5 | 1044:d741f536f23a |
---|---|
54 attrs[name] = buildmethod(case, name, 'auto') | 54 attrs[name] = buildmethod(case, name, 'auto') |
55 name += '_single' | 55 name += '_single' |
56 attrs[name] = buildmethod(case, name, 'single') | 56 attrs[name] = buildmethod(case, name, 'single') |
57 | 57 |
58 StupidPullTests = type('StupidPullTests', (test_util.TestBase,), attrs) | 58 StupidPullTests = type('StupidPullTests', (test_util.TestBase,), attrs) |
59 | |
60 | |
61 def suite(): | |
62 all_tests = [unittest.TestLoader().loadTestsFromTestCase(StupidPullTests), | |
63 ] | |
64 return unittest.TestSuite(all_tests) |