view tests/run.py @ 55:987e44afa71e

hg_delta_editor: simplify exec/symlink flags generation
author Patrick Mezard <pmezard@gmail.com>
date Mon, 03 Nov 2008 08:43:07 -0600
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())