view tests/test_binaryfiles.py @ 683:4589d48c9e1b

tests: add a Makefile for easily running the tests. The Makefile tests one thing which isn't easily tested from within Python; that the svnwrap modules aren't loaded for irrelevant commands.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Fri, 03 Sep 2010 00:35:12 +0200
parents d2ef7220a079
children 312b37bc5e20
line wrap: on
line source

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)

def suite():
    all = [unittest.TestLoader().loadTestsFromTestCase(TestFetchBinaryFiles),
          ]
    return unittest.TestSuite(all)