Mercurial > hgsubversion
view tests/run.py @ 48:d87b57c719f0
Add a test that verifies push works to svn:// servers.
This test will fail if you are running an svnserve on localhost, but it checks and will not touch your data in that case.
Also fixed the push tests, which had been largely broken.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 29 Oct 2008 21:15:36 -0500 |
parents | 1f8854804795 |
children | e319c9168910 |
line wrap: on
line source
import os import sys import unittest sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) import test_fetch_command import test_fetch_command_regexes import test_push_command import test_tags def suite(): return unittest.TestSuite([test_fetch_command.suite(), test_fetch_command_regexes.suite(), test_push_command.suite(), test_tags.suite(), ]) if __name__ == '__main__': runner = unittest.TextTestRunner() runner.run(suite())