Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

tests: move with_encoding() decorator to tests module

Changeset 8e525e1b6b45

Parent b64e8ded9334

by Yuya Nishihara

Changes to 2 files · Browse files at 8e525e1b6b45 Showing diff from parent b64e8ded9334 Diff from another changeset...

Change 1 of 2 Show Changes Only tests/​__init__.py Stacked
1
 
2
 
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 import os, tempfile, shutil +from nose.tools import *  from mercurial import ui, commands, error +from tortoisehg.util import hglib  from tortoisehg.hgqt import thgrepo    FIXTURES_DIR = os.path.join(os.path.dirname(__file__), 'fixtures')    def setup():   global _tempdir, _reposdir   _tempdir = tempfile.mkdtemp()   _reposdir = os.path.join(_tempdir, 'repos')   os.mkdir(_reposdir)    def teardown():   shutil.rmtree(_tempdir)      def create_fixture_repo(name, dirname=None):   """Create the fixture repo and return thgrepo object"""   path = os.path.join(_reposdir, dirname or name)   repo = thgrepo.repository(ui.ui(), path, create=True)   commands.import_(repo.ui, repo, os.path.join(FIXTURES_DIR, name + '.diff'),   base='', strip=1, exact=True)   return repo    def get_fixture_repo(name):   """Return the thgrepo object for the specified fixture repo"""   path = os.path.join(_reposdir, name)   try:   return thgrepo.repository(ui.ui(), path)   except error.RepoError:   return create_fixture_repo(name) + + +def with_encoding(encoding, fallbackencoding=None): + """Change locale encoding temporarily""" + orig_encoding = hglib._encoding + orig_fallbackencoding = hglib._fallbackencoding + + def setenc(): + hglib._encoding = encoding + hglib._fallbackencoding = fallbackencoding or encoding + + def restoreenc(): + hglib._encoding = orig_encoding + hglib._fallbackencoding = orig_fallbackencoding + + return with_setup(setenc, restoreenc)
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
19
20
21
 
1
2
3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
5
6
7
@@ -1,21 +1,7 @@
 """Test for encoding helper functions of tortoisehg.util.hglib"""  from nose.tools import *  from tortoisehg.util import hglib - -def with_encoding(encoding, fallbackencoding=None): - """Change locale encoding temporarily""" - orig_encoding = hglib._encoding - orig_fallbackencoding = hglib._fallbackencoding - - def setenc(): - hglib._encoding = encoding - hglib._fallbackencoding = fallbackencoding or encoding - - def restoreenc(): - hglib._encoding = orig_encoding - hglib._fallbackencoding = orig_fallbackencoding - - return with_setup(setenc, restoreenc) +from tests import with_encoding    JAPANESE_KANA_I = u'\u30a4' # Japanese katakana "i"