comparison tests/test_fetch_exec.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 04729f3a3d17
children 449c61eeace7
comparison
equal deleted inserted replaced
1043:69a9fb45cad5 1044:d741f536f23a
26 '08e6b380bf291b361a418203a1cb9427213cd1fd') 26 '08e6b380bf291b361a418203a1cb9427213cd1fd')
27 self.assertEqual(repo['tip']['foo'].flags(), 'x') 27 self.assertEqual(repo['tip']['foo'].flags(), 'x')
28 28
29 def test_empty_prop_val_executable_stupid(self): 29 def test_empty_prop_val_executable_stupid(self):
30 self.test_empty_prop_val_executable(True) 30 self.test_empty_prop_val_executable(True)
31
32 def suite():
33 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestFetchExec),
34 ]
35 return unittest.TestSuite(all_tests)