~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/features.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-18 13:02:52 UTC
  • mfrom: (5830.3.6 i18n-msgfmt)
  • Revision ID: pqm@pqm.ubuntu.com-20110518130252-ky96qcvzt6o0zg3f
(mbp) add build_mo command to setup.py (INADA Naoki)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
import os
20
20
import stat
21
 
import sys
22
21
 
23
22
from bzrlib import (
24
23
    osutils,
43
42
not_running_as_root = _NotRunningAsRoot()
44
43
 
45
44
apport = tests.ModuleAvailableFeature('apport')
46
 
gpgme = tests.ModuleAvailableFeature('gpgme')
47
45
lzma = tests.ModuleAvailableFeature('lzma')
48
46
meliae = tests.ModuleAvailableFeature('meliae')
49
47
paramiko = tests.ModuleAvailableFeature('paramiko')
51
49
pywintypes = tests.ModuleAvailableFeature('pywintypes')
52
50
sphinx = tests.ModuleAvailableFeature('sphinx')
53
51
subunit = tests.ModuleAvailableFeature('subunit')
54
 
testtools = tests.ModuleAvailableFeature('testtools')
55
52
 
56
53
 
57
54
class _BackslashDirSeparatorFeature(tests.Feature):
130
127
bash_feature = ExecutableFeature('bash')
131
128
sed_feature = ExecutableFeature('sed')
132
129
diff_feature = ExecutableFeature('diff')
133
 
 
134
 
 
135
 
class Win32Feature(tests.Feature):
136
 
    """Feature testing whether we're running selftest on Windows
137
 
    or Windows-like platform.
138
 
    """
139
 
 
140
 
    def _probe(self):
141
 
        return sys.platform == 'win32'
142
 
 
143
 
    def feature_name(self):
144
 
        return "win32 platform"
145
 
 
146
 
win32_feature = Win32Feature()