Mercurial > hgsubversion
comparison tests/comprehensive/test_verify.py @ 426:72e63999722f
tests: make comprehensive tests work properly with nose and run.py
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 15 Jun 2009 12:26:20 -0500 |
parents | 636e9bf5d49c |
children | 868693631372 |
comparison
equal
deleted
inserted
replaced
425:f5222d021665 | 426:72e63999722f |
---|---|
1 import os | 1 import os |
2 import pickle | 2 import pickle |
3 import unittest | 3 import unittest |
4 | 4 |
5 import test_util | 5 # wrapped in a try/except because of weirdness in how |
6 # run.py works as compared to nose. | |
7 try: | |
8 import test_util | |
9 except ImportError: | |
10 from tests import test_util | |
6 | 11 |
7 from mercurial import hg | 12 from mercurial import hg |
8 from mercurial import ui | 13 from mercurial import ui |
9 | 14 |
10 from hgsubversion import svncommands | 15 from hgsubversion import svncommands |