comparison tests/comprehensive/test_stupid_pull.py @ 383:987bd7444f60

Remove vestigial references to the tags_info file we no longer need.
author Augie Fackler <durin42@gmail.com>
date Sat, 30 May 2009 20:28:07 -0500
parents 36d26e158748
children 24a8471069c0
comparison
equal deleted inserted replaced
382:b6047c200708 383:987bd7444f60
20 checkout_path += '/' + subdir 20 checkout_path += '/' + subdir
21 u.setconfig('hgsubversion', 'stupid', '1') 21 u.setconfig('hgsubversion', 'stupid', '1')
22 hg.clone(u, test_util.fileurl(checkout_path), wc2_path, update=False) 22 hg.clone(u, test_util.fileurl(checkout_path), wc2_path, update=False)
23 self.repo2 = hg.repository(ui.ui(), wc2_path) 23 self.repo2 = hg.repository(ui.ui(), wc2_path)
24 self.assertEqual(self.repo.branchtags(), self.repo2.branchtags()) 24 self.assertEqual(self.repo.branchtags(), self.repo2.branchtags())
25 self.assertEqual(pickle.load(open(os.path.join(self.wc_path, '.hg', 'svn', 'tag_info'))),
26 pickle.load(open(os.path.join(wc2_path, '.hg', 'svn', 'tag_info'))))
27 25
28 26
29 def buildmethod(case, name): 27 def buildmethod(case, name):
30 m = lambda self: self._do_case(case) 28 m = lambda self: self._do_case(case)
31 m.__name__ = name 29 m.__name__ = name