Mercurial > hgsubversion
view tests/test_binaryfiles.py @ 211:05243ec295e1
fetch: Fix a bug that caused plaintexts to be interpreted as missing more often than they should be.
Also refactored a large part of hg_delta_editor to make it carry slightly less state around.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 16 Mar 2009 23:19:00 -0500 |
parents | 906d3f302b45 |
children | d2ef7220a079 |
line wrap: on
line source
import unittest import test_util class TestFetchBinaryFiles(test_util.TestBase): def test_binaryfiles(self, stupid=False): repo = self._load_fixture_and_fetch('binaryfiles.svndump', stupid=stupid) self.assertEqual('cce7fe400d8d', str(repo['tip'])) def test_binaryfiles_stupid(self): self.test_binaryfiles(True) def suite(): all = [unittest.TestLoader().loadTestsFromTestCase(TestFetchBinaryFiles), ] return unittest.TestSuite(all)