/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/features.py

  • Committer: Martin Pool
  • Date: 2011-04-01 03:07:34 UTC
  • mfrom: (5609.29.3 2.3)
  • mto: (5609.29.4 2.3)
  • mto: This revision was merged to the branch mainline in revision 5755.
  • Revision ID: mbp@canonical.com-20110401030734-wip8a66uf8aphgud
merge up to bzr 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2009, 2010, 2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
20
20
import stat
21
21
 
22
22
from bzrlib import tests
23
 
from bzrlib.symbol_versioning import deprecated_in
24
23
 
25
24
 
26
25
class _NotRunningAsRoot(tests.Feature):
38
37
 
39
38
 
40
39
not_running_as_root = _NotRunningAsRoot()
 
40
 
41
41
apport = tests.ModuleAvailableFeature('apport')
 
42
meliae = tests.ModuleAvailableFeature('meliae')
42
43
paramiko = tests.ModuleAvailableFeature('paramiko')
43
44
pycurl = tests.ModuleAvailableFeature('pycurl')
44
45
pywintypes = tests.ModuleAvailableFeature('pywintypes')
 
46
sphinx = tests.ModuleAvailableFeature('sphinx')
45
47
subunit = tests.ModuleAvailableFeature('subunit')
46
48
 
47
49
 
128
130
 
129
131
bash_feature = ExecutableFeature('bash')
130
132
sed_feature = ExecutableFeature('sed')
 
133
diff_feature = ExecutableFeature('diff')