Mercurial > hgsubversion
view tests/test_fetch_truncated.py @ 1037:2316f2623dd4
Fix for missing mercurial.utils deque
mercurial.utils does not always contain deque (e.g. it doesn't in
mercurial-2.2.3-1.fc17.x86_64 rpm) Respecting recent commit that uses
mercurial.utils for python 2.4 we try default collections deque and
fallback to mercurial.utils deque
author | Will Thames <will@thames.id.au> |
---|---|
date | Wed, 31 Jul 2013 11:25:08 +1000 |
parents | 20e73b5ab6f7 |
children | d741f536f23a |
line wrap: on
line source
import test_util import unittest from mercurial import commands from mercurial import hg class TestFetchTruncatedHistory(test_util.TestBase): def test_truncated_history(self, stupid=False): # Test repository does not follow the usual layout repo_path = self.load_svndump('truncatedhistory.svndump') svn_url = test_util.fileurl(repo_path + '/project2') commands.clone(self.ui(stupid), svn_url, self.wc_path, noupdate=True) repo = hg.repository(self.ui(stupid), self.wc_path) # We are converting /project2/trunk coming from: # # Changed paths: # D /project1 # A /project2/trunk (from /project1:2) # # Here a full fetch should be performed since we are starting # the conversion on an already filled branch. tip = repo['tip'] files = tip.manifest().keys() files.sort() self.assertEqual(files, ['a', 'b']) self.assertEqual(repo['tip']['a'].data(), 'a\n') def test_truncated_history_stupid(self): self.test_truncated_history(True) def suite(): all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestFetchTruncatedHistory), ] return unittest.TestSuite(all_tests)