mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-14 12:13:22 +00:00
0c81030974
--HG-- rename : third_party/python/hglib/LICENSE => third_party/python/python-hglib/LICENSE rename : third_party/python/hglib/hglib/__init__.py => third_party/python/python-hglib/hglib/__init__.py rename : third_party/python/hglib/hglib/client.py => third_party/python/python-hglib/hglib/client.py rename : third_party/python/hglib/hglib/context.py => third_party/python/python-hglib/hglib/context.py rename : third_party/python/hglib/hglib/error.py => third_party/python/python-hglib/hglib/error.py rename : third_party/python/hglib/hglib/merge.py => third_party/python/python-hglib/hglib/merge.py rename : third_party/python/hglib/hglib/templates.py => third_party/python/python-hglib/hglib/templates.py rename : third_party/python/hglib/hglib/util.py => third_party/python/python-hglib/hglib/util.py rename : third_party/python/hglib/setup.py => third_party/python/python-hglib/setup.py extra : rebase_source : 552d93c9e90c04171c8b627c8f4f4fa5ec506cc3
23 lines
779 B
Python
23 lines
779 B
Python
import os, tempfile, sys, shutil
|
|
|
|
def setUp():
|
|
os.environ['LANG'] = os.environ['LC_ALL'] = os.environ['LANGUAGE'] = 'C'
|
|
os.environ["EMAIL"] = "Foo Bar <foo.bar@example.com>"
|
|
os.environ['CDPATH'] = ''
|
|
os.environ['COLUMNS'] = '80'
|
|
os.environ['GREP_OPTIONS'] = ''
|
|
os.environ['http_proxy'] = ''
|
|
|
|
os.environ["HGEDITOR"] = sys.executable + ' -c "import sys; sys.exit(0)"'
|
|
os.environ["HGMERGE"] = "internal:merge"
|
|
os.environ["HGUSER"] = "test"
|
|
os.environ["HGENCODING"] = "ascii"
|
|
os.environ["HGENCODINGMODE"] = "strict"
|
|
tmpdir = tempfile.mkdtemp('', 'python-hglib.')
|
|
os.environ["HGTMP"] = os.path.realpath(tmpdir)
|
|
os.environ["HGRCPATH"] = os.pathsep
|
|
|
|
def tearDown(self):
|
|
os.chdir('..')
|
|
shutil.rmtree(os.environ["HGTMP"])
|