Mercurial > hgsubversion
diff tests/test_binaryfiles.py @ 1106:5cb6c95e0283 stable
Merge default and stable so I can do stable releases again.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 11 Feb 2014 12:48:49 -0500 |
parents | da2c835cd6b8 |
children |
line wrap: on
line diff
--- a/tests/test_binaryfiles.py +++ b/tests/test_binaryfiles.py @@ -3,14 +3,8 @@ import test_util import unittest 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) + stupid_mode_tests = True -def suite(): - all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestFetchBinaryFiles), - ] - return unittest.TestSuite(all_tests) + def test_binaryfiles(self): + repo = self._load_fixture_and_fetch('binaryfiles.svndump') + self.assertEqual('cce7fe400d8d', str(repo['tip']))