Mercurial > hgsubversion
comparison tests/test_fetch_symlinks.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 | bd12a4da0f35 |
| children | 8b6fb32b001e |
comparison
equal
deleted
inserted
replaced
| 1043:69a9fb45cad5 | 1044:d741f536f23a |
|---|---|
| 55 repo = self._load_fixture_and_fetch('addspecial.svndump', | 55 repo = self._load_fixture_and_fetch('addspecial.svndump', |
| 56 subdir='trunk') | 56 subdir='trunk') |
| 57 ctx = repo['tip'] | 57 ctx = repo['tip'] |
| 58 self.assertEqual(ctx['fnord'].flags(), 'l') | 58 self.assertEqual(ctx['fnord'].flags(), 'l') |
| 59 self.assertEqual(ctx['exe'].flags(), 'x') | 59 self.assertEqual(ctx['exe'].flags(), 'x') |
| 60 | |
| 61 def suite(): | |
| 62 all_tests = [ | |
| 63 unittest.TestLoader().loadTestsFromTestCase(TestFetchSymlinks), | |
| 64 unittest.TestLoader().loadTestsFromTestCase(TestMergeSpecial), | |
| 65 ] | |
| 66 return unittest.TestSuite(all_tests) |
